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
2answers
243 views

Conversion problem using standalone and imagemagick

I'm trying to convert a table to png format using Imagemagick \documentclass[12pt,a4paper,border=8pt,convert=true]{standalone} \usepackage{booktabs} \usepackage{caption} \usepackage{siunitx} ...
9
votes
0answers
265 views

Missing \endgroup error for Beamer standalone with subpreambles option [closed]

I am trying to use Martin Scharrer's nifty standalone package to put a Beamer animation into a standalone file. Here is a minimal example that demonstrates the error I am running into. The subfile, ...
6
votes
1answer
483 views

\usepackage{enumitem} produces “Environment description undefined” error

If I run pdflatex on the following: \documentclass[class=minimal,border=0pt]{standalone} \usepackage{tikz} \usepackage{varwidth} \usepackage{upquote} % \usepackage{enumitem} ...
3
votes
1answer
124 views

Environment not working inside \multido using standalone document class

I have the following code \documentclass[multi={image},crop,ignorerest]{standalone}% \usepackage{multido} \begin{document} \multido{\iframe=1+1}{2}{ \begin{image} \iframe \end{image} } \end{document} ...