Graphics, Figures & Tables ⇒ Placement of Figures and Tables
-
- Posts: 7
- Joined: Fri Jun 11, 2010 4:07 am
Placement of Figures and Tables
I have tried using {minipage} but I can't figure out how to get enough control over the positioning.
Any pointers would be appreciated.
- Attachments
-
- layout.jpg (35.88 KiB) Viewed 3456 times
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
-
- Posts: 11
- Joined: Wed Sep 15, 2010 2:44 pm
Re: Placement of Figures and Tables
-
- Posts: 7
- Joined: Fri Jun 11, 2010 4:07 am
Re: Placement of Figures and Tables
-
- Posts: 7
- Joined: Fri Jun 11, 2010 4:07 am
Re: Placement of Figures and Tables
So back to the original question, how do I use LaTeX to arrange the figures on a page in a fashion similar to that shown in the attachment.
Appreciate any help.
Placement of Figures and Tables
Code: Select all
\documentclass[a4paper,11pt]{article}\usepackage{graphicx}\usepackage{multirow}\begin{document}\begin{tabular}{cc}\begin{tabular}{ccc}Distance & Column 1 & Column 2\\1 & 0 & 0 \\\end{tabular} & \multirow{3}{*}{\includegraphics[height=0.5\textheight,width=0.1\textwidth]{thin_figures}}\\\includegraphics{figure1}\\\includegraphics{figure2}\end{tabular}\end{document}