Generaltables containing figures

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
kostoglotov
Posts: 58
Joined: Sun Apr 27, 2008 12:50 pm

tables containing figures

Post by kostoglotov »

Hi, I've got another question...
I want to create a table containing 4 columns, 4 rows.
1 column contain the name of the chemicals, the second and third their properties, and the last one a chemical formula (drawn as a jpg/psd file). Can anyone advise on how to create such a table - containing figures?
Attachments
tab.pdf
here is the example of what i am trying to create...
(118.67 KiB) Downloaded 280 times

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

tables containing figures

Post by Stefan Kottwitz »

Hi kostoglotov,

just use \includegraphics without figure environment inside the tables. One very small example for that:

Code: Select all

\begin{tabular}{llll}
Name & Property & Property & Formula \\
\hline
example & text & text & \includegraphics[width=2cm,height=2cm]{test.jpg}
\end{tabular}
Just to illustrate what I meant with \includegraphics, of course you can use other environments then tabular, like tabularx etc. and packages like array or booktabs.

Stefan
LaTeX.org admin
kostoglotov
Posts: 58
Joined: Sun Apr 27, 2008 12:50 pm

Re: tables containing figures

Post by kostoglotov »

Cheers.
kostoglotov
Posts: 58
Joined: Sun Apr 27, 2008 12:50 pm

Re: tables containing figures

Post by kostoglotov »

Thank you a lot!
Post Reply