LaTeX writer: use \autocites* when "suppress-author" citation used.

This commit is contained in:
John MacFarlane
2016-11-24 10:12:13 +01:00
parent 07b3060403
commit d7fb9db295
+3 -2
View File
@@ -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