I want to create an worksheet with several equations, which are enumerated. To get two columns I separated my page into two minipages. I got the same amount of equations on each minipage, but they don't align horizontally, which I want them to. How can I align my equations horizontally?
EDIT: If someone could tell me how to insert a blank space with the height of an (for example) fraction I would be fine.
\documentclass{scrartcl}
\usepackage{amsmath, amsthm, amssymb}
\begin{document}
\begin{enumerate}
\begin{enumerate}
\item Test \\
\begin{minipage}[t]{0.5\textwidth}
\item\vspace{1pt}
\begin{align*}
f(x)&=\frac{1}{5}(x^2+x+5)
\intertext{\item\hspace{1pt}}
f(x)&=2x^2(3x+4)
\intertext{\item\hspace{1pt}}
f(x)&=\frac{1}{8}(3x^4-8x^3+16)
\intertext{\item\hspace{1pt}}
f(x)&=12x^{\frac{1}{2}}-4
\intertext{\item\hspace{1pt}}
f(x)&=15x^0
\end{align*}
\end{minipage}
\begin{minipage}[t]{0.5\textwidth}
\item\vspace{1pt}
\begin{align*}
f(x)&=x^{-3}
\intertext{\item\hspace{1pt}}
f(x)&=2-x^{-2}+4x^{-1}
\intertext{\item\hspace{1mm}}
f(x)&=(x-3)^2+4
\intertext{\item\hspace{1pt}}
f(x)&=2(x+15)^2-38
\intertext{\item\hspace{1pt}}
f(x)&=(x^3\cdot x^2)+x^4
\end{align*}
\end{minipage}
\end{enumerate}
\end{enumerate}
\end{document}

%after the first\end{minipage}to remove the space caused by the linebreak. And use\linewidthinstead of\textwidth. – Torbjørn T. Mar 27 '17 at 17:03\linewidth– FriedrichP Mar 27 '17 at 17:12%and\linewidthonly removes the overfull hbox you get. But I see the problem, you're after\vphantom{\frac{1}{2}}. – Torbjørn T. Mar 27 '17 at 17:23