截面旋转

截面旋转

在此处输入图片描述

如何输入章节旋转的部分,带或不带阴影框,然后旁边就有文字?到目前为止我所拥有的

\begin{document}
\section*{\rotatebox{90}{Chapter 1}}
\begin{center}
Test Test Test\\
\end{center}
\end{document}

答案1

\documentclass{book}
\usepackage{marginnote}
\usepackage{graphicx}    
\newcommand\Section[2][\reversemarginpar]{{%
  #1%
  \section*{\marginnote{\raisebox{-1.1\height}{\rotatebox{90}{#2}}}}}}

\begin{document}
\Section{Chapter 1}
Test Test Test

\newpage
\Section[]{Chapter 2}
Test Test Test

\end{document}

在此处输入图片描述

相关内容