对于我的工作,我需要使用 MLA 格式进行引用。我想使用(作者,年份)格式进行文内引用,但我不知道该怎么做。有人能帮我吗?
答案1
正如 moewe 告诉你的,MLA 引用样式不是(作者、年份),但是,如果你愿意,你可以混合使用这些样式authoryear
来引用和mla
参考书目(我不知道这样的做法是否正统):
\documentclass{book}
\usepackage[citestyle=authoryear,bibstyle=mla]{biblatex}
\renewcommand{\nameyeardelim}{\addcomma\addspace}
\addbibresource{biblatex-examples.bib}
\begin{document}
Some examples:
with \verb|\parencite|: \parencite{pines}
with \verb|\textcite|: \textcite{knuth:ct:a}
with \verb|\cite|: \cite{sigfridsson}
\printbibliography
\end{document}