I have a large Tex
file, simplified as below:
\documentclass[a4paper,11pt]{article}\usepackage{latexsym}\usepackage[empty]{fullpage}\usepackage{titlesec}\usepackage{enumitem}\usepackage{fancyhdr}\usepackage{ragged2e}\newcommand{\Item}[1]{ \item\small{ \begin{justify} {#1 \vspace{-2pt}} \end{justify} }}\begin{document}\begin{itemize}[label=\textbullet, leftmargin=0.38in] \Item{Item one} \Item{Item two} \Item{Item three} \Item{Item four} \Item{Item five}\end{itemize}\vspace{-5pt}\end{document}
Which gives me:
How can I achieve something similar to the picture below?
Consider that the items are put into a table with 3 rows and two columns, while the items are aligned to the left, and the table takes the whole space available as \textwidth
.
Edit:
I ended up using varwidth
package. it simply defines columns with selected width, and you are free to put any kind of item inside each. Read here.