[Tex/LaTex] Bullet point list inside of a table

itemizeliststables

\noindent \begin{tabular}{@{} l l}

 \Large{Education}    & \textbf{University} \\
     & Degree, Major, May 2018. \\
\begin{itemize}
  \item Course 1
  \item Course 2
  \item blah, blah.
\end{itemize}
\end{tabular}

I'm trying to insert a bullet point list inside of my table, however the output looks something like this.

enter image description here

What am I doing wrong?

Best Answer

You can simply add bullet points in you LaTex tables, there is a sample which I hope it helps:

\documentclass{article}

\begin{document}
\begin{tabular}{|p{0.4\textwidth}|p{.03\textwidth}|p{0.4\textwidth}|}
%%%
\begin{itemize}
  \item Sample Text
  \item Sample Text
  \end{itemize}
  & Hi &
  \begin{itemize}
  \item Sample Text
  \item Sample Text
\end{itemize}\\
%%%
\begin{itemize}
  \item Sample Text
  \item Sample Text
  \end{itemize}
  & Hi &
  \begin{itemize}
  \item Sample Text
  \item Sample Text
\end{itemize}
%%%

\end{tabular}
\end{document}

The output would be like: enter image description here Also in your code, you need to drop the l and work with p:

\documentclass{article}

\begin{document}

\noindent \begin{tabular}{|p{0.6\textwidth}|p{0.6\textwidth}|}

 \Large{Education}    & \textbf{University} \\
     & Degree, Major, May 2018. \\
\begin{itemize}
  \item Course 1
  \item Course 2
  \item blah, blah.
\end{itemize}
\end{tabular}

\end{document}

enter image description here