In my references (the library is automatically produced by Mendeley) I have a paper "Abc", which I refer to quite a lot. At one point I need to refer to a specific section in this paper (or a page, it doesn't matter). Is there a way to do that? Something like: "in Abc, section 3.2" or "in Abc, page 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}
\cite[page 15]{abc}close enough to what you are looking for? – samcarter_is_at_topanswers.xyz Sep 08 '17 at 16:36