获取芝加哥脚注中的完整参考

获取芝加哥脚注中的完整参考

我是 Latex 的完全初学者,所以请耐心等待...

我正在尝试使用 chicago 包 (\usepackage{chicago} ) 来引用我的其他论文。Latex 会自行完成所有引用吗?还是我必须手动编写每个脚注?

例如:

是否可以输入类似

...it is a temporary condition and can be changed\footnote{\cite{Chua1999}}...

latex 会自动创建正确的完整参考文献(第一次引用该论文时)?例如http://library.sc.edu/pubserv/chicago.pdf

答案1

正如 Bernard 的评论中所提到的,使用biblatex-chicago包和命令很容易。\footfullcite

以下是一个例子

\begin{filecontents*}{mybiblio.bib}
@article{Chua1999,
  author = {Chua},
  title = {A title},
  journal = {A Journal},
  year = {1999},
}\end{filecontents*}

\documentclass{article}
\usepackage[backend=biber,authordate-trad]{biblatex-chicago}

\addbibresource{mybiblio.bib}

\begin{document}

...it is a temporary condition and can be changed\footfullcite{Chua1999}...

\printbibliography

\end{document} 

输出(脚注)

在此处输入图片描述

PS 必须使用以下方式进行编译

pdflatex 文件

比伯文件

pdflatex 文件

pdflatex 文件

相关内容