In a document I'm making, I have several cases where I need to organize things into several "columns." For example, here is some code I might use:
\documentclass[letterpaper,12pt]{report}
\usepackage[margin=1in]{geometry}
\begin{document}
\bigskip
\noindent
\begin{minipage}[t]{.45\textwidth}
\raggedright
This is \\
some left-aligned \\
text in a column \\
for demo purposes
\end{minipage}
\hfill
\noindent
\begin{minipage}[t]{.45\textwidth}
\raggedleft
This is \\
some different \\
text, right-aligned \\
for demo purposes, \\
and with more lines.
\end{minipage}
\end{document}
My question is concerning the {.45\textwidth} portion of the definition of the minipage environments. In my first attempt to setup this layout, I used the perhaps more intuitive {.5\textwidth} value on each of them - since I want to use up the entire page, splitting it in half.
However, when I use this value, I get a warning back from TeX:
Overfull \hbox (2.61107pt too wide) in paragraph at lines 8--28
What I'm wondering is, is this behavior just due to the fact that minipage has some implicit padding which I have to deal with via fractions like 0.45, or is there some cleaner way to define this environment?
(Keep in mind, this example is simplified - in the actual document, I may need more than two columns, and the columns may be sized unevenly.)

multicolis one, but there are several other options as well. I'm not saying that's how you should do it. I'm just really curious about why you didn't want to use one of the more obvious (to me!) approaches. – cfr Jan 31 '14 at 00:14