Graphics, Figures & Tables ⇒ Using a table to create 2 columns
-
- Posts: 4
- Joined: Sun Jun 27, 2010 11:08 am
Using a table to create 2 columns
I'm thinking of using a table to create 2 columns like in the pdf below. I'm new to LaTeX, so I'm not exactly too sure how to create such a table where I'm able to insert bullet points
- Attachments
-
- example.pdf
- (15.39 KiB) Downloaded 208 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

Using a table to create 2 columns
You can make it using this formula:
Code: Select all
\usepackage{array}
.
.
.
\begin{document}
\begin{tabular}{m{2in}m{2in}}
\begin{itemize}
\item 1
\item 2
\item 3
\end{itemize}
&
\begin{itemize}
\item 1
\item 2
\item 3
\end{itemize}
\end{tabular}
-
- Posts: 4
- Joined: Sun Jun 27, 2010 11:08 am
Re: Using a table to create 2 columns
Thank you
That helped me a lot. It was because I didn't put the \usepackage{array} that it wasn't working.

-
- Posts: 162
- Joined: Wed Jun 17, 2009 10:18 pm
Using a table to create 2 columns
You could also use the multicol-package, like so:
Or two minipages, side by side:
Code: Select all
\documentclass[a4paper]{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
Text here:
\begin{itemize}
\item Text
\item Text
\item Text
\end{itemize}
\columnbreak
Text here:
\begin{itemize}
\item Text
\item Text
\item Text
\end{itemize}
\end{multicols}
\end{document}
Code: Select all
\documentclass[a4paper]{article}
\begin{document}
\begin{minipage}{0.5\textwidth}
Text here:
\begin{itemize}
\item Text
\item Text
\item Text
\end{itemize}
\end{minipage}
\begin{minipage}{0.5\textwidth}
Text here:
\begin{itemize}
\item Text
\item Text
\item Text
\end{itemize}
\end{minipage}
\end{document}