Saturday, August 3, 2013

Create simple table in Latex

\documentclass[11pt]{beamer}
\begin{document}
    \begin{frame}
        \begin{tabular}{cc}
            row1 column1 & row1 column2 \\ 
            row2 column1 & row2 column2 \\
        \end{tabular}
    \end{frame}
\end{document}

No comments:

Post a Comment