How do I make a two column minisection in my latex document where the left hand column would be an image and the right hand column would be some accompanying text?
Asked
Active
Viewed 1.1k times
7
-
there are two "obvious" approaches: using minipages (see this question for ideas) or tabular. minipages probably wins; more information on minipage alignment here. – barbara beeton Jun 10 '13 at 17:45
-
Thanks a lot. I tried minipages, but it doesn't seem to work. – Manjil P. Saikia Jun 13 '13 at 14:05
2 Answers
4
The mulitcol package will do the trick for you.
\documentclass{article}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{lipsum}
\parskip 1ex
\begin{document}
\parindent0em
\lipsum[4]
\begin{multicols}{2}[\columnsep2em]
\includegraphics[width=\linewidth]{example-image}%
\columnbreak
Here is the short text that accompanies my figure.
\end{multicols}
\lipsum[4]
\end{document}
Harry
- 4,021
0
This is shown without horizontal gaps, but they would be easy enough to insert.
\documentclass{article}
\usepackage{graphicx}
\usepackage{lipsum}
\parskip 1ex
\begin{document}
\lipsum[4]
\noindent
\includegraphics[width=.5\textwidth]{example-image}%
\parbox[b]{.5\textwidth}{Here is the short text that accompanies my
figure.}
\lipsum[4]
\noindent
\includegraphics[width=.5\textwidth]{example-image}%
\parbox[b]{.5\textwidth}{
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
Here is the long text that accompanies my figure.
}
\end{document}

Steven B. Segletes
- 237,551