仅引用一个参考资料的页码

仅引用一个参考资料的页码

所以我在做一门课程的总结,而我所学的信息仅来自一本书。有时我想显示某个陈述来自书中的哪一页,但我不知道如何简洁地做到这一点。

基本上我想要一些(功能上)类似的东西:

“声明[书 p123]”

你有什么建议吗?

答案1

使用 BibLaTeX 很容易做到这一点,尽管对于单一参考来说,这可能看起来有点小题大做(不过,它会让你熟悉)。

这是一个简单的例子:

TeX 文件:

\documentclass{article}

\usepackage{biblatex}
\addbibresource{references.bib}

\begin{document}
Reference to the book: \cite{kopka2003guide}, and something found on some page:
\cite[p.~150]{kopka2003guide}.

% The content of the [] brackets is arbitrary.

\printbibliography
\end{document}

围兜文件:

@book{kopka2003guide,
  title        = {Guide to LaTeX (Adobe Reader)},
  author       = {Kopka, H. and Daly, P.W.},
  isbn         = 9780321617743,
  year         = 2003,
  publisher    = {Pearson Education}
}

输出

输出

相关内容