Graphics, Figures & TablesFigures and Text

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Figures and Text

Post by coachbennett1981 »

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]
Screen Shot 2020-10-05 at 8.30.43 AM.png
Screen Shot 2020-10-05 at 8.30.43 AM.png (46.63 KiB) Viewed 1713 times
[/img]



Thank you for your time,
Nick

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

trophi20
Posts: 7
Joined: Thu Apr 02, 2020 7:17 pm

Figures and Text

Post by trophi20 »

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}
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Figures and Text

Post by coachbennett1981 »

That helped. I need to mess around with the Tikz figure a bit. Thank you!
Post Reply