僅引用一個參考文獻的頁碼

僅引用一個參考文獻的頁碼

因此,我正在對我只從一本書中獲取資訊的課程進行總結。有時我想顯示聲明是從書中的哪一頁獲取的,但我無法找到一種乾淨的方法來做到這一點。

基本上我想要一些(功能上)類似:

“聲明[書123頁]”

你有什麼建議嗎?

答案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}
}

輸出

輸出

相關內容