\documentclass[letterpaper,10pt]{article}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[none]{hyphenat}
\usepackage[margin=1in]{geometry}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{layouts}
\begin{document}
\begin{minipage}[t]{0.5\textwidth}
text
\end{minipage}\begin{minipage}[t]{0.5\textwidth}
text
\end{minipage}
\end{document}
I have a page with two columns of text. When the text is full, the two columns look too close together in the middle, how do I increase that spacing between one column and the other?


\hfill. `\documentclass[letterpaper,10pt]{article} \usepackage[none]{hyphenat} \usepackage[margin=1in]{geometry} \usepackage{fancyhdr} \usepackage{lipsum}\begin{document} \begin{minipage}[t]{0.45\textwidth} \lipsum[1] \end{minipage}\hfill\begin{minipage}[t]{0.45\textwidth} \lipsum[2] \end{minipage} \end{document}
– Sep 13 '19 at 03:34. Whether this is better than atwocolumn` document with some column break I don't know.\begin{multicols}{2} \lipsum[1] \vfill\null \columnbreak \lipsum[2] \end{multicols} \end{document}
– Sep 13 '19 at 15:58(see e.g. https://tex.stackexchange.com/a/8687 for\vfill\null`) is IMHO an arguably cleaner solution.\documentclass[twocolumn]{article}is enough to have two column docuements with the right margins, or that you can use themulticolpackage to make two columns (or more) only in some part of one column document? – Fran Sep 14 '19 at 04:21