我对 TeX 还很陌生,但我或多或少地了解过http://en.wikibooks.org/wiki/LaTeX/\quote
Wiki,但我在和旁边没有找到任何内容\quotation
。
我怎样才能使用报价索引进行内联报价?例如
他说“Bla blah”$^{[14]}$
我最后该如何将其链接到参考文献?
有这方面的教程或例子吗?或者其他引用系统,比如哈佛引用系统也可以。
答案1
您可以按照通常的方式进行:
\documentclass{article}
\usepackage[square,sort&compress,super]{natbib}
\usepackage{filecontents}
\begin{filecontents*}{mybib.bib}
@article{shell2002use,
title={{How to Use the IEEEtran \LaTeX{} Class}},
author={Shell, Michael},
journal={Journal of \LaTeX{} Class Files},
volume={1},
number={11},
pages={10--20},
year={2002}
}
\end{filecontents*}
\begin{document}
He said ``Bla blah''~\cite{shell2002use}
\bibliographystyle{unsrtnat}
\bibliography{mybib}
\end{document}
或者使用强大的csquotes
包。如果您希望链接为超链接,请添加\usepackage{hyperref}
:
\documentclass{article}
\usepackage[square,sort&compress,super]{natbib}
\usepackage{filecontents}
\begin{filecontents*}{mybib.bib}
@article{shell2002use,
title={{How to Use the IEEEtran \LaTeX{} Class}},
author={Shell, Michael},
journal={Journal of \LaTeX{} Class Files},
volume={1},
number={11},
pages={10--20},
year={2002}
}
\end{filecontents*}
\usepackage{csquotes}
\usepackage[colorlinks]{hyperref}
\begin{document}
He said \enquote{Bla blah}~\cite{shell2002use}
\bibliographystyle{unsrtnat}
\bibliography{mybib}
\end{document}
按pdflatex
→→→ 顺序编译上述代码。bibtex
pdflatex
pdflatex
natbib
主要用于获取上标符号的引用数。