Tagged Questions
4
votes
1answer
117 views
Problem when using \nocite together with the standalone package
Given:
\documentclass{minimal}
\usepackage{standalone}
\begin{document}
\input{inclusion}
\nocite{*}
\bibliographystyle{plain}
\bibliography{test}
\end{document}
With:
\documentclass{minimal}
...
3
votes
1answer
117 views
Use of apacite package with subfiles package or standalone package results in LaTeX Error: Can be used only in preamble
I want to create a multi-file project for my thesis, in which I use separate files for sections. To be able to compile these separate files I tried using the subfiles package and the standalone ...