Graphics, Figures & Tables ⇒ A lot of figures and no text
A lot of figures and no text
I need a chapter with a lot of pictures (about 40), but no text (well, only captions to the pictures). How do i do that?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
A lot of figures and no text
start with \chapter and use a figure environment for each picture with a caption, such as
Code: Select all
\chapter{Title}
\begin{figure}[htbp]
\centering
\includegraphics{filename1}
\caption{text for first figure}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphics{filename2}
\caption{text for second figure}
\end{figure}
...
Re: A lot of figures and no text
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Re: A lot of figures and no text
\clearpage forces the output of floats, that LaTeX can go on to handle the next floats.
Stefan