Is there an option to cite the title from my bibliography with apacite?
I found the question How to get title of a citation? which is the exact question I had in mind but it did not work with apacite. I receive multiple error messages regarding my citation which are according to apacite but not compatible with biblatex (I assume).
Package biblatex error: '\bibliographystyle' invalid
In the mentioned question there were two options proposed, both with biblatex:
\citetitle{}\citefield{}
Because I like the format of apacite I would not want to switch to biblatex. Is there an alternative to cite the title with apacite?
My code:
\documentclass[a4paper, 10pt]{book}
\usepackage{apacite}
\usepackage{biblatex}
\begin{document}
"Some text"
\bibliography{library}
\bibliographystyle{apacite}
\end{document}


usebibpackage. I did not know of it before but it is quite useful. – Alex_P Mar 03 '19 at 17:10