GeneralPictures in appendix

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
jezikk
Posts: 6
Joined: Sat Jun 28, 2008 8:31 pm

Pictures in appendix

Post by jezikk »

Hi again :-)
look at on my screen:
http://disk.jabbim.cz/jezikk@njs.netlab.cz/appen1.PNG
http://disk.jabbim.cz/jezikk@njs.netlab.cz/appen2.PNG
My code in appendix:

Code: Select all

\newpage
\subsection{Blokové schéma generátorů kmitočtu}\label{app:genBlok}
\begin{figure}[h]
		\centering
		\includegraphics[scale=0.6]{img/weaverBlokCompl.PNG}
\end{figure}
How can I insert my pictures to appendix more effective?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10358
Joined: Mon Mar 10, 2008 9:44 pm

Pictures in appendix

Post by Stefan Kottwitz »

Hi jezikk,

you don't need the figure environment ifyou don't want the pictures to float, if you want to place them exactly at this place. It could be made like this:

Code: Select all

\newpage
\subsection{Blokové schéma generátorů kmitočtu}\label{app:genBlok}
\begin{center}
\includegraphics[scale=0.6]{img/weaverBlokCompl.PNG}
\end{center}
Raise the value of scale, if 0.6 is too small, make it bigger to use more space of the page.
A \vfill between the \subsection and the \begin{center} could push the picture to the bottom margin. Or perhaps use \vspace with a small value to add some space after the subsection title.

Stefan
LaTeX.org admin
Post Reply