Graphics, Figures & TablesScaling for included Graphics

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
ofeyrpf
Posts: 7
Joined: Wed Feb 18, 2009 7:19 pm

Scaling for included Graphics

Post by ofeyrpf »

Hi,

I am trying to scale a PDF in a document. But I can't make it small enough. Is there a limit to how small a PDF can be scaled down to?

Code: Select all

\begin{table}[h]
\begin{tabular}{ccc}
a & \includegraphics[scale=0.1]{graph-positiveslope.pdf}  & c\\
d & e & f
\end{tabular}
\end{table}
This PDF was created using Processing so there may be a problem with the bounding box.

Any help would be greatly appreciated,

Thanks,
Shane
Attachments
graph-positiveslope.pdf
(810 Bytes) Downloaded 236 times

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Scaling for included Graphics

Post by localghost »

I have no problem in scaling it further down.

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{graphicx}

\begin{document}
  \begin{table}[!htb]
    \begin{tabular}{ccc}
      a & \includegraphics[scale=0.01]{graph-positiveslope.pdf}  & c\\
      d & e & f
    \end{tabular}
  \end{table}
\end{document}

Thorsten
Post Reply