Graphics, Figures & Tables ⇒ Figure Page (all Figures in a Table on one Page)
-
- Posts: 2
- Joined: Sun Sep 11, 2011 8:42 pm
Figure Page (all Figures in a Table on one Page)
I seem to be having some trouble placing all my (eight) figures in a simple two-column table on a single page.
The alternatives seem to be either a loss of individual labelling, or having to make a subdivision using subfigure (fig 1a,b,c instead of fig 1,2,3).
Using textpos for absolute positioning might be an option, but is there not a better way to do this?
Thanks!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Figure Page (all Figures in a Table on one Page)
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\begin{document}
\begin{figure}[!ht]
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-1}
\end{minipage}
\hfill
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-2}
\end{minipage}
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-3}
\end{minipage}
\hfill
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-4}
\end{minipage}
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-5}
\end{minipage}
\hfill
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-6}
\end{minipage}
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-7}
\end{minipage}
\hfill
\begin{minipage}{0.49\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\caption{Dummy figure}\label{fig:dummy-8}
\end{minipage}
\end{figure}
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 2
- Joined: Sun Sep 11, 2011 8:42 pm
Figure Page (all Figures in a Table on one Page)
Using
Code: Select all
\begin{minipage}[t]{0.49\linewidth}
\vspace{0pt}