General ⇒ tables containing figures
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
tables containing figures
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
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
tables containing figures
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}
Stefan
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm