Search found 3 matches

by syborg
Sat Apr 25, 2015 5:21 pm
Forum: Graphics, Figures & Tables
Topic: problem with includegraphics
Replies: 4
Views: 8943

problem with includegraphics

Great ! it works perfectly well using Tikz like that:

Code: Select all

\begin{tikzpicture}[remenber picture, overlay]
     \draw (current page.center} node {\includegraphics{my image}};
\end{tikzpicure}
Thanks a lot !
by syborg
Sat Apr 25, 2015 2:30 pm
Forum: Graphics, Figures & Tables
Topic: problem with includegraphics
Replies: 4
Views: 8943

Re: problem with includegraphics

\includegraphics[height=\textheight,keepaspectratio]{YourFile} is better, since it centers the image within the page, but still the image heigth does not fit the page height....

I tried to tweak it, changing the values of \voffset and \hoffset locally before \includegraphics, and it works. But of ...
by syborg
Fri Apr 24, 2015 9:50 pm
Forum: Graphics, Figures & Tables
Topic: problem with includegraphics
Replies: 4
Views: 8943

problem with includegraphics

hello,

I simply want to insert a jpg file in a page. Moreover I want the height of the image to fit exactly the height of the page, and the width of the image to be precisely centered in the page.

When I put \includegraphics{my_image.jpg}
the image is inserted with a left and a top margin ...