I am creating a document in Google Docs and I want it to look more professional. I have been using LaTeX for a long time, but I have always had difficulty using multicols and especially aligning figures and text. So any suggestions would be a big help. Here is a picture of what I mean. [img]
Thank you for your time,
Nick
[/img]Graphics, Figures & Tables ⇒ Figures and Text
NEW: TikZ book now 40% off at Amazon.com for a short time.

Figures and Text
Maybe something like this?
Code: Select all
\documentclass[10pt,a4paper]{report}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{|c|c|}
\hline
\begin{minipage}{0.5\textwidth}
test
\end{minipage}
&
\begin{minipage}{0.5\textwidth}
\includegraphics{test.png}
\end{minipage}
\\ \hline
test & test \\ \hline
\end{tabular}
\end{document}
-
- Posts: 274
- Joined: Fri Feb 05, 2010 10:15 pm
Figures and Text
That helped. I need to mess around with the Tikz figure a bit. Thank you!