How can I insert a figure (i.e. graphic) that extends 100% of the viewport but with a given height?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can use the usual [width=X,height=Y] parameters, but instead of giving a literal X use \columnwidth...

If you want the figure to span multiple columns, use \begin{figure*} instead of \begin{Figure}

link|improve this answer
thanks for the fast reply! – gletscher Sep 28 '09 at 20:04
feedback

You can use:

\includegraphics[width=\textwidth,height=5in]{imagefile}

but construction

\begin{minipage}{8cm} \includegraphics[width=\textwidth]{imagefile} \end{minipage}

will produce image with width of 8cm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.