mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-25 01:36:45 +00:00
LaTeX writer: use \autocites* when "suppress-author" citation used.
This commit is contained in:
@@ -1111,8 +1111,9 @@ citationsToBiblatex (c:cs) = do
|
||||
return $ text cmd <> foldl' (<>) empty args
|
||||
where
|
||||
cmd = case citationMode c of
|
||||
AuthorInText -> "\\textcites"
|
||||
_ -> "\\autocites"
|
||||
SuppressAuthor -> "\\autocites*"
|
||||
AuthorInText -> "\\textcites"
|
||||
NormalCitation -> "\\autocites"
|
||||
convertOne Citation { citationId = k
|
||||
, citationPrefix = p
|
||||
, citationSuffix = s
|
||||
|
||||
Reference in New Issue
Block a user