引用论文的某一章节

引用论文的某一章节

在我的参考文献中(该库由 Mendeley 自动生成),我有一篇论文“Abc”,我经常参考它。有一次我需要引用这篇论文中的特定部分(或页面,无所谓)。有办法吗?类似于:“在 Abc,第 3.2 节”或“在 Abc,第 15 页”。

\documentclass{article}
\bibliographystyle{apalike}
\usepackage{filecontents}

\begin{filecontents}{\library.bib}
@book{abc,
  author = {Alphabet, A.},
  year = {1990},
  title = {Abc},
  publisher = {My Publisher},
}
\end{filecontents}

\begin{document}

I think that the model described in \cite{abc}, chapter 3.2, is awesome.

\bibliography{\library.bib}
\end{document}

答案1

答案由@samcarter 提供:

\cite[page 15]{abc}.

相关内容