Graphics, Figures & TablesMultiple Graphics on 2 pages

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
dasu
Posts: 1
Joined: Fri Feb 07, 2014 11:39 pm

Multiple Graphics on 2 pages

Post by dasu »

Hello,

Currently I am working on diploma thesis and I have problem with multiple graphics and position of text. Namely, I want to insert a few drawings one after another as shown in the picture. Then when I want to write the rest of my work text separated my pictures. Explanation of the picture what I want to do correctly. I add a piece of code in Latex. Please help me.

Best regardes

My diploma thesis is written in polish language :)

Code: Select all

$\bullet$ Amplituda A=0.5 mm, częstotliwość f=1000 Hz\\
  
\begin{figure}[h]
\center
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}
\includegraphics[scale=0.4]{a53}
\includegraphics[scale=0.4]{a54}
\end{figure}
%here we have new page%
\begin{figure}[h]
\center
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}
\includegraphics[scale=0.4]{a53}
\includegraphics[scale=0.4]{a54}
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}


\end{figure}\

Przeprowadzona analiza numeryczna dostarczyła wielu informacji na temat rozkładu temperatury przepływającego medium, rozkładu prędkości oraz intensywności turbulencji. Badania przeprowadzono dla różnych wartości amplitudy oraz częstotliwości drgającej płytki. 
Attachments
Bez tytułu.png
Bez tytułu.png (42.4 KiB) Viewed 3456 times

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
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Multiple Graphics on 2 pages

Post by cgnieder »

Hi dasu,

Welcome to the LaTeX community!

If you don't want the graphics to float, you shouldn't put them in a floating environment such as {figure}. Since you don't seem to need a caption to the graphics a {center} environment should do:

Code: Select all

\begin{center}
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}
\includegraphics[scale=0.4]{a53}
\includegraphics[scale=0.4]{a54}
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}
\includegraphics[scale=0.4]{a53}
\includegraphics[scale=0.4]{a54}
\includegraphics[scale=0.4]{a51}
\includegraphics[scale=0.4]{a52}
\end{center}
Comprehensive details on LaTeX's floats can be found here.

BTW: why did you put a space (\) after the figure environment? Also note that there is no \center command. You're lucky it even works. If you want to center the contents of a {figure} environment use \centering instead.

I'm also a bit puzzled by your use of $\bullet$... it seems like you're faking an {itemize} environment?

Regards
site moderator & package author
Post Reply