I am attempting to use the standalone package in LaTeX to generate images of practice math questions that will be displayed for an audience as part of a presentation. The final output needs to be PNG images in a 16:9 aspect ratio.
I have figured out how to use the standalone package combined with the minipage package to output images that are properly formatted. But the last step is getting them to output with a consistent 16:9 aspect ratio.
Currently my code looks like this:
\documentclass[convert,border=1pt]{standalone}
\usepackage{amsmath}
\begin{document}
\begin{minipage}
\noindent
For $i = \sqrt{-1}$, what is the sum $(7 + 3i) + (-8 + 9i)$?
\\[1\baselineskip]
\noindent
A) $-1 + 12i$ \\[0.5\baselineskip]
B) $-1 - 6i$ \\[0.5\baselineskip]
C) $15 + 12i$ \\[0.5\baselineskip]
D) $15 - 6i$
\end{minipage}
\end{document}
Any advice is greatly appreciated!
