そこで、私は 1 冊の本からのみ情報を得ているコースの要約を作成しています。 時々、ある文が本のどのページから引用されているかを示したいのですが、それをきれいに行う方法がわかりません。
基本的に、次のような機能を備えたものが欲しいです:
「声明[書籍 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}
}
出力