Graphics, Figures & TablesLatex: Image on the left and table on the right

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
allawi
Posts: 3
Joined: Mon Feb 04, 2019 6:36 pm

Latex: Image on the left and table on the right

Post by allawi »

Hi there,

I'm looking to create a table that has an image on the left showing the component. I have an example in the image attach, I'm trying to replicate this.

This is how i want it to look like.
test.png
test.png (50.45 KiB) Viewed 7135 times

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Latex: Image on the left and table on the right

Post by Johannes_B »

Welcome to the forum.

Code: Select all

\documentclass{article}

\usepackage{adjustbox}
\begin{document}

\begin{table}
	\adjustimage{width=3cm,valign=c}{example-image}\quad%
	\begin{tabular}{ll}
		Model & blurred \\
		$V_\mathrm{in}$ & blurred \\
		$V_\mathrm{out}$ & blurred \\
		$I_{\max}$ & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
	\end{tabular}
\end{table}

\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
allawi
Posts: 3
Joined: Mon Feb 04, 2019 6:36 pm

Latex: Image on the left and table on the right

Post by allawi »

Thank you Johannes for your quick replay and welcoming. I have tried your code but it is not aligning a 100% attaching the results.
test.png
test.png (60.44 KiB) Viewed 7132 times
This is the code I have added

Code: Select all

\begin{table}
	\adjustimage{width=3cm,valign=c}{Illustrations/QFN-40-Backside}\quad%
	\caption{Table for test} \label{fig:test}
	\begin{tabular}{ll}
		Model & blurred \\
		$V_\mathrm{in}$ & blurred \\
		$V_\mathrm{out}$ & blurred \\
		$I_{\max}$ & blurred \\
	\end{tabular}
\end{table}
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Latex: Image on the left and table on the right

Post by Johannes_B »

Without testing the code, the caption should come first. Please try.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
allawi
Posts: 3
Joined: Mon Feb 04, 2019 6:36 pm

Latex: Image on the left and table on the right

Post by allawi »

Johannes_B wrote:Without testing the code, the caption should come first. Please try.
That worked, thank you. One last question please.

The current alignment of caption is a bit off from the table. Is it possible to make it centered as well?
test.png
test.png (114.9 KiB) Viewed 7109 times
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Latex: Image on the left and table on the right

Post by Johannes_B »

Just add \centering after \begin{table}.

Code: Select all

\documentclass{article}

\usepackage{adjustbox}
\usepackage{caption}
\usepackage{showframe}
\begin{document}

\begin{table}
	\caption{The following is not about Wombats}
	\centering
	\adjustimage{width=3cm,valign=c}{example-image}\quad%
	\begin{tabular}{ll}
		Model & blurred \\
		$V_\mathrm{in}$ & blurred \\
		$V_\mathrm{out}$ & blurred \\
		$I_{\max}$ & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
		Features & blurred \\
	\end{tabular}
\end{table}

\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply