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 3421 times

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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