% inv op worksheet template
\documentclass[varwidth]{standalone}
\usepackage{amsmath}
\usepackage[normalem]{ulem} % [normalem] prevents the package from changing the default behavior of `\\emph` to underline.
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{align*}

\begin{document}
    \begin{varwidth}{0.25\paperwidth}
    \begin{align*}
    3x &= 6\\
    \frac{3x}{3} &= \frac{6}{3}\\
    x &= 2\\
\end{align*}
\end{varwidth}

\end{document}
