TransWikia.com

Visualizing a picture in the tabular

TeX - LaTeX Asked by Anouar on June 30, 2021

For my thesis, I have to include my signature in the autorship page. I want to do that numerically (not hand-writing). I include the signature in the form of an image to my project and I want to put it in a tabular as follows:

  noindent NAME  
begin{tabular}{@{}p{.72in}p{3.0in}@{}}
    Signature: &  begin{figure}[H]
includegraphics[scale=0.4]{images/sig.png}
end{figure}
    
    &
    Date: & 13.04.2021
end{tabular}

The problem that the signaure will jump to the next line and not directly in front of the word "Signature". This is the output that I am getting:

enter image description here

I tried to change the floating [H] to [h], but it doesn’t work.

2 Answers

As I commented, "Don't put a figure (floating) environment inside a tabular"

documentclass{article}
usepackage{graphicx}
begin{document}
noindent NAME  
begin{tabular}{@{}p{.72in}p{3.0in}@{}}
    Signature: &  includegraphics[height=30pt]{example-image}
    
    &
    Date: & 13.04.2021
end{tabular}
end{document}

enter image description here

Correct answer by Steven B. Segletes on June 30, 2021

You don't need a figure environment to include a figure/image. That might sound odd, but think of it - you're not using a table environment to include a tabular... so why do you necessarily need a figure environment to include an image?

Just use

% ...
Signature: & includegraphics[scale=0.4]{images/sig.png} 
% ...

You may have to adjust the vertical placement of sig.png relative to Signature:, but that's a minor issue. You can use raisebox{<height>}{<image>} for that.

Answered by Werner on June 30, 2021

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP