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 4365 times
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- 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}