LaTeX 文書に次の参考文献が設定されているとします。
\begin{thebibliography}{9}
\bibitem{Cite1}
Peter Jackson
\textit{Some random article name}.
Journal name,\textbf{29}, p339-349, 1968.
\end{thebibliography}
ここで、例えばこの参考文献を引用したいと思います。
Hello \cite{Cite1}
次のように表示されます
Hello [1]
しかし、この引用文には342ページからの引用であることを含めたい。つまり、次のようなものを表示したい。
Hello [1, pg. 342]
どうすればそれを実行できるでしょうか?
答え1
[pg. 342]
コマンドにオプションとして追加するだけです\cite
: \cite[pg. 342]{Cite1}
。
次の MWE を参照してください ( でマークされた、私が行ったコード変更を参照してください<======
)。
\documentclass[11pt]{article}
\begin{document}
Hello \cite{Cite1}
Hello \cite[pg. 342]{Cite1} % <=========================================
\bibliographystyle{plain}
\begin{thebibliography}{9}
\bibitem{Cite1}
Peter Jackson
\textit{Some random article name}.
Journal name,\textbf{29}, p339-349, 1968.
\end{thebibliography}
\end{document}
結果の PDF は次のようになります。