2

有没有办法将以下 LaText 表格中的“Demo 1”、“Demo2”和“Demo 3”标题旋转 90°?

\documentclass[a4paper,twoside,10pt]{report}
\begin{document}
\begin{tabular}{|l|l|l|l|}
\hline
 & Demo1 & Demo2 & Demo3 \\
\hline
Person 1 & x &  &    \\
\hline
Person 2 & x &  &  x  \\
\hline
Person 3 & x & x &    \\
\hline
Person 4 &  & x &  x  \\
\hline
\end{tabular}
\end{document}

谢谢

4

1 回答 1

2

是的。正如Andrew J. Page 博士在他的博客上所写,

将其放在代码的顶部:

\usepackage{旋转}

只需使用以下代码创建带有旋转列文本的表格:

\begin{tabular}{|r|r|}\hline 
\begin{sideways}Paper\end{sideways} &\begin{sideways}Static\end{sideways} \\
\hline
HAR1994j & Journal \\
SWRT1996c & Conference \\
\hline
\end{tabular}
于 2010-03-25T22:03:59.333 回答