Showing posts with label LaTeX. Show all posts
Showing posts with label LaTeX. Show all posts

Monday, October 02, 2006

put multiple images on one line in LaTeX

Use "array" to create table so as to place multiple images.
An example from Google:

\begin{figure}[h]
\begin{center}$
\begin{array}{cc}
\includegraphics[width=2.5in]{image1.jpg} &
\includegraphics[width=2.5in]{image2.jpg}
\end{array}$
\end{center}
\caption{my caption}
\end{figure}

Read More...