Content deleted Content added
per edit request on talk page - enable subtitles as stated in the to do list and depicted at test cases page |
sync from sandbox: add `display-authors=all` and `display-editors=all` to suppress "et al" with >8 authors |
||
Line 618:
end
if author_count > 8 then -- convention in astronomy journals, optional mode for this?
citeq_args['display-authors'] = nil; -- unset because no longer needed
else
citeq_args['display-authors'] = citeq_args['display-authors'] or 3 -- limit to three displayed names
end
end
Line 628 ⟶ 632:
end
if editor_count > 8 then -- convention in astronomy journals, optional mode for this?
citeq_args['display-editors'] = nil; -- unset because no longer needed
else
citeq_args['display-editors'] = citeq_args['display-editors'] or 3 -- limit to three displayed names
end
end
|