Graphics, Figures & Tables ⇒ Force Portrait Format...
Force Portrait Format...
I am trying to add some figures (eps) in my paper in PORTRAIT format, but:
I don't want that after compiling and viewing - a rotation of the page in landscape format... which always happens.
I am creating a contruction scetch in corel designer X4 and safe it in PORTRAIT format. Then export to *.eps.
When I view this *.eps file IT is also shown in PORTRAIT format, but as soon as I implement it in tex code (texniccenter) and press compile (LaTeX --> PS --> PDF) the page (not the figure) is rotated to landscape format, which I dont want!
Just in case you get me wrong: I absolutely want the figure to fill almost most of the page - that's why I created it exactly in DIN A4 size, BUT I want that the PDF shows it in Portrait format while one has to turn his head to read the figure properly. Its just because otherwise adobe Reader always annoys me with the zoom function and scroll bars which wont work properly anymore.
Minimal example:
\documentclass[12pt,a4paper]{scrreprt}
\usepackage{graphicx}
\begin{document}
\begin{figure} [htb]
\centering
\includegraphics[width=0.95\textwidth]{xyz}
\end{figure}
\end{document}
attached: xyz.eps
attached: xyz.jpg
- Attachments
-
- This is what it always looks like in my document... basicly the figure has the right orientation in relation to the page on which it is. BUT: the page does not have the right orientation towards the rest of the document, I want that it stays Portrait!!
- xyz.JPG (23.41 KiB) Viewed 3469 times
-
- xyz.eps
- Portrait format EPS File which should be implemented exactly this way (PORTRAIT!)
- (59.25 KiB) Downloaded 361 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Force Portrait Format...
Have you tried the rotation option in \includegraphics? If you enter the correct rotation angle, the figure is in portrait. Here is how:
Code: Select all
\includegraphics[angle=-90, width=0.95\textwidth]{xyz}
Hope this helps. Cheers