我认为它是用脚注来引用作者,而脚注是用来引用参考文献的吗?
我需要写下一篇文章。
参见 Chang and Lin (2001) 第 20 页,该文确保了引力理论
我用
\usepackage{natbib}
HELLO\footcite{[See], {chang2001}, [p. 30]}
HELLO\footnote{chang2001}
@article{chang2001,
title={Training v-support vector classifiers: theory and algorithms},
author={Chang, Chih-Chung and Lin, Chih-Jen},
journal={Neural computation},
volume={13},
number={9},
pages={2119--2147},
year={2001},
publisher={MIT Press}
}
产生的错误:
答案1
如果您想要文中引用还是页面底部引用,您仍然没有回答我的问题,因此这个答案包含两种可能性。
我还必须猜测您的参考书目风格之类的东西,因为您的帖子没有包含最小的工作示例......
\documentclass{article}
\usepackage[round]{natbib}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{chang2001,
title={Training v-support vector classifiers: theory and algorithms},
author={Chang, Chih-Chung and Lin, Chih-Jen},
journal={Neural computation},
volume={13},
number={9},
pages={2119--2147},
year={2001},
publisher={MIT Press}
}
\end{filecontents*}
\begin{document}
text text text \citep[see][p. 30]{chang2001}
or
text text text\footnote{see \citet{chang2001}, p. 30}
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}