Also, how do I format the second column to be a paragraph that automatically uses the remaining space in
\textwidth
(so that I don't have to keep making line breaks)?Code: Select all
\documentclass[10pt]{article}\usepackage[margin=1in]{geometry}\parindent=0cm% THE DOCUMENT\begin{document}\raggedright\begin{center}{\LARGE TITLE}\\ \vspace{0.2em}Subtitle \\\end{center}\begin{minipage}{0.45\textwidth}\begin{flushleft}\textbf{Left} \\Some information goes here \\to the left\end{flushleft}\end{minipage}\hfill\begin{minipage}{0.45\textwidth}\begin{flushright}\textbf{Right} \\More information goes here \\to the right\end{flushright}\end{minipage}\vspace{\baselineskip}\begin{tabular*}{\textwidth}{p{100pt} @{\hspace{\fill}} l}SHOULD NOT & first first first first first first first first first first first first first first first first first first first first first first first first first first first first \\HAVE INDENT & second second second second second second second second second second second second second second second second second second second second \\ON THE LEFT & these entries should wrap around into a paragraph instead \\& of running off the page\end{tabular*}