I am using the beamer class in latex.
My code and result are like the following:
\begin{frame}{The Hamilton-Jacobi-Bellman Equation}
\begin{columns}
\begin{column}{.5\textwidth}
\vfill
\centering
{\Huge{Discrete}}
\\[\baselineskip]
\begin{itemize}
\item System
\[
x_{k+1} = f(x_k, u_k)
\]
\[
k \in \{0, \ldots, N\}
\]
\item Cost
\[
g_N(x_N) + \sum_{k=0}^{N-1}g_k(x_k, u_k)
\]
\item DP equation
\[
J_N(x_N) = g_N(x_N)
\]
\[
J_k(x_k) = \min_{u_k\in U_k} [g_k(x_k, u_k) \hspace{5em}
\]
\[
\hspace{8em} + J_{k+1}(x_k, u_k)]
\]
\end{itemize}
\vfill
\end{column}
\vrule width 1.5pt
\begin{column}{.5\textwidth}
\vfill
\centering
{\Huge{Continuous}}
\\[\baselineskip]
\begin{itemize}
\item System
\[
\dot{x}(t) = f(x(t), u(t))
\]
\[
t \in [0, T]
\]
\item Cost
\[
h(x(T)) + \int_0^T g(x(t), u(t)) dt
\]
\item HJB equation
\[
V(T, x) = h(x)
\]
\[
0 = \min_{u\in U}[g(x,u) + \nabla_t V(t, x) \hspace{4em}
\]
\[
\hspace{6.5em} + \nabla_x V(t, x)'f(x, u)]
\]
\end{itemize}
\vfill
\end{column}
\end{columns}
\end{frame}
I want each line to be located on same horizontal line. However, My equations are located on different lines, e.g. Cost, equations items, etc.


columnsafter the two items which should be on the same height and open a new one for the following item. Is certainly not the shortest and cleanest code but will give the desired result. – samcarter_is_at_topanswers.xyz Jul 12 '16 at 09:18