如何用 TeX 引用并输出参考文献?

如何用 TeX 引用并输出参考文献?

我对 TeX 还很陌生,但我或多或少地了解过http://en.wikibooks.org/wiki/LaTeX/\quoteWiki,但我在和旁边没有找到任何内容\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→→→ 顺序编译上述代码。bibtexpdflatexpdflatex

natbib主要用于获取上标符号的引用数。

相关内容