그림이 가로 길이가 너무 길어서 한 페이지에 landscape로 들어가게 하고 싶을 수 있다.
그럴때는...
http://doc.ktug.or.kr/gfaqprj/gfaq-html/node45.html
그럴때는...
http://doc.ktug.or.kr/gfaqprj/gfaq-html/node45.html
그림 하나만 가로로(landscape) 넣고 싶은데....
[*]두 가지 방법이 있습니다.- rotating패키지,sidewaysfigure환경을 쓰는 방법입니다. 이 환경은rotating뿐 아니라endfloat,rotfloat패키지 등에도 정의되어 있습니다.(표에 대해서는sidewaystable도 정의되어 있습니다.)
\begin{sidewaysfigure}
\usepackage{graphicx,rotating}
\includegraphics{test}
\caption{ROTATING TEST\label{fig:rottest}}
\end{sidewaysfigure} - lscape패키지의landscape환경을 쓰는 방법입니다.
\usepackage{graphicx,lscape}
...
\begin{landscape}
\begin{figure}
\centering
\includegraphics{test}
\caption{LandScape TEST}
\end{figure}
\end{landscape}
이 중 어느 경우든,windvi에서는 결과를 제대로 보기 어렵습니다.dvips를 이용하여 PS 파일로 변환한 후 인쇄하면가로로 들어간 그림(한 페이지를 새로 만듭니다)을 볼 수 있을 것입니다.