Tag: side by side
- 
			
			latex minipage text beside figureHow to put text beside figure with minipage? We use two minipages side by side in first one we put the figure e.g. pic1 und in second one the text. The vspace command in the second minipage is only a hint, for example if the text is not enough you could push it up by […] 
- 
			
			latex minipage side by side figuresTo get two figures side by side just use this example: \documentclass{article} \usepackage{graphicx} \begin{document} \begin{minipage}[c]{0.5\textwidth} \includegraphics[width=\textwidth]{figure 1} \end{minipage} \begin{minipage}[c]{0.5\textwidth} \includegraphics[width=\textwidth]{figure 2} \end{minipage} \end{document} It also works with two tables side by side.