Answers for "reduce figure size latex"

1

latex width figure

documentclass{report}
usepackage[english]{babel}
usepackage{graphicx}

begin{document}
includegraphics[height=3cm]{example-image-b}
includegraphics[width=5cm]{example-image-b}

includegraphics[height=3cm, width=3cm]{example-image-b}
includegraphics[height=3cm, width=6cm]{example-image-b}
includegraphics[keepaspectratio,height=3cm, width=6cm]{example-image-b}
end{document}
Posted by: Guest on June-03-2020
0

reduce size table latex

resizebox{3cm}{!}{
  begin{something}
    something
  end{something}
  }
Posted by: Guest on December-30-2020

Browse Popular Code Answers by Language