脚注引用作者、年份和页码

脚注引用作者、年份和页码

我已经设置了参考书目,并且它正在运行。这是我的引用方式:

\documentclass{article}

\begin{document}

\textbf{{\large Disposition}}

blablablabla.\cite{corpore20}
\\\\
\bibliographystyle{plain} 
\bibliography{biblio} 

\end{document}

这将生成一个 [1] 来代替 \cite{corpore20}。我该如何更改它,以便得到一个 ^1 而不是 [1],它会生成一个包含信息 Author. (1987), p. 78 的脚注

这可能吗?

非常感谢您的帮助。

答案1

如果你使用biblatex,你可以说

\usepackage[style=authoryear,autocite=footnote]{biblatex} 

然后\autocite[78]{corpore20}生成包含该信息的脚注。默认情况下,这将用作biber后端,因此编译顺序将是 (pdf)LaTeX -> Biber -> (pdf)LaTeX,而不是 BibTeX 运行。如果这是个问题,请添加backend=bibtex到包选项中,但建议使用 Biber。

\documentclass{article}
\usepackage[style=authoryear,autocite=footnote]{biblatex}
\bibliography{biblatex-examples}

\begin{document}
  \autocite[45]{westfahl:space}
\end{document}

作者年份式脚注

相关内容