회전된 텍스트로 인한 Longtable 행 높이 제한

회전된 텍스트로 인한 Longtable 행 높이 제한

다음 코드를 사용하여 페이지에서 회전되는 테이블을 만들고 싶지만 페이지 자체는 회전되지 않습니다(책에 인쇄하기 위한 것이므로 PDF에서도 페이지를 회전할 수 없습니다).

\documentclass[11pt]{book}
\usepackage{array}
\usepackage{adjustbox}
\usepackage{fancyhdr} 
\usepackage{longtable}
\usepackage{fancybox}

\newcolumntype{R}{>{\beginrotate}c<{\endrotate}}
\def\beginrotate{\begin{Sbox}}
\def\endrotate{\end{Sbox}\rotatebox{-90}{\TheSbox~~}}

\begin{document}
\pagestyle{fancy}
\fancyhead[L]{\thepage}

\begin{longtable}{|RR|R|}
\caption{Exemplary long vertical table. \label{tab:label}}\\
\hline
Caption 3 & Caption 2 which is much longer than the other captions & Caption 1\\
\hline
\endfirsthead
\caption[]{Exemplary long vertical table (Continued).}
\endhead
Here is content of a cell which should be limited to 4 cm in row height. & Content & Content\\
Here is content of a cell which should be limited to 5 cm in row height. & Content & Content\\
\end{longtable}

\end{document}

테이블에는 많은 열이 있으며 여러 페이지에 걸쳐 있습니다. 첫 번째 열은 각 페이지에서 반복되어야 합니다. 또한 테이블에는 각 페이지에 캡션이 있어야 하지만 첫 번째 페이지에만 레이블이 있고 다음 페이지에서는 단순히 "계속"됩니다.

나는 모든 필드의 텍스트를 회전시키는 긴 테이블을 사용하여 해결 방법을 구축하려고 했습니다. 하지만 각 행의 높이를 제한하는 방법을 파악하지 못했습니다.

관련 정보