Math & Science ⇒ How to realize such two columns (one column text and the other figure)?
How to realize such two columns (one column text and the other figure)?
Please see the attached photo.
- Attachments
-
- Screen Shot 2019-09-03 at 7.13.00 PM.png (88.85 KiB) Viewed 4233 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
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
How to realize such two columns (one column text and the other figure)?
this is a way using subfigures:
Code: Select all
\documentclass{article}\usepackage[demo]{graphicx}\usepackage{subcaption}\usepackage{blindtext}\begin{document}\begin{figure}[!htbp]\begin{subfigure}{.6\textwidth}\blindtext\end{subfigure}%\begin{subfigure}{.4\textwidth}\hfill\includegraphics[width=0.8\linewidth,height=7cm]{figure}\end{subfigure}\end{figure}\end{document}