MHB How to arrange figures on a page using Tex?

  • Thread starter Thread starter Dustinsfl
  • Start date Start date
AI Thread Summary
To arrange six figures in two rows of three, one effective approach involves using LaTeX with the appropriate figure placement commands. Key resources from TeX Stack Exchange provide guidance on positioning figures side by side, suggesting methods that can be adapted for more than two figures. Successful implementation depends on the figures' width, aspect ratio, and the page margins, which need to be considered to ensure proper alignment and spacing. Adjustments may be necessary based on these variables to achieve the desired layout.
Dustinsfl
Messages
2,217
Reaction score
5
I want to have these 6 figures set up next to each other in sets of 3.
So fig 1 fig 2 fig 3 then below them fig 4 fig 5 fig 6
How can I do this?

Code:
\begin{figure}[H]
\includegraphics[height = 2in]{hw5problem3phase0}
\caption{$F = c = k_1 = 0$}
\includegraphics[height = 2in]{hw5problem3phasec94}
\caption{$F = k_1 = 0$ and $c = 9.4$}
\includegraphics[height = 2in]{hw5problem3phasecF94}
\caption{$k_1 = 0$ and $F = c = 9.4$}
\includegraphics[height = 2in]{hw5problem3phaseF0}
\caption{$F = 0$, $c = 9.4$, and $k_1 = 12.25$}
\includegraphics[height = 2in]{hw5problem3phasec0}
\caption{$c = 0$, $F = 10.75$, and $k_1 = 12.25$}
\includegraphics[height = 2in]{hw5problem3phasenonzero}
\caption{$c = 7.2$, $F = 7.8$, and $k_1 = 12.8$}
\end{figure}
 
Physics news on Phys.org

Similar threads

Back
Top