everytime I use \includegraphics in my document the font of the site
where the picture is on get's bold.
And I can't figure out why, only the site with the picture the
following sites are normal again.
Even when I _only_ use \includegraphics without the begin block and
width!
Thats the setup I use:
\usepackage[pdftex]{graphicx}
\begin{figure}[ht]
\centering
\includegraphics[width=\ScaleIfNeeded]{AVT}
\caption{AVT}
\label{AVT}
\end{figure}
% Functions
\makeatletter
\def\ScaleIfNeeded{%
\ifdim\Gin@nat@width>\linewidth
\linewidth
\else
\Gin@nat@width
\fi
}
\makeatother
System:
Wdinows, Texnicenter, MiKTeX 2.8
Steve
Crystal ball says that your included graphics contain
alpha (transparency) channel, and Adobe reader does not
properly encapsulate the setting. Try looking at the
pdf in another pdf reader to verify that it is fine.
To make it work with Adobe, remove transparency from the
pictures.
DA
Your crystal ball was right. :)
I haven't thought about the alpha channel making problems...
> Try looking at the
> pdf in another pdf reader to verify that it is fine.
Yes it was displayed correct in a different pdf reader.
Steve