如何在 Latex 表格中旋转表格标题

发布于 2024-08-27 00:12:27 字数 439 浏览 7 评论 0原文

有没有办法将下面 LaText 表中的“演示 1”、“演示 2”和“演示 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}

谢谢

is there a way to rotate the "Demo 1", "Demo2" and "Demo 3" headlines 90° in the following LaText table?

\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}

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亢潮 2024-09-03 00:12:27

是的。作为 博士。安德鲁·J·佩奇在他的博客上写道,

将其放在代码顶部:

\usepackage{旋转}

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

<前><代码>\begin{表格}{|r|r|}\hline
\begin{sideways}纸张\end{sideways} &\begin{sideways}静态\end{sideways} \\
\h行
HAR1994j&杂志 \\
SWRT1996c&会议 \\
\h行
\end{表格}

Yes. As Dr. Andrew J. Page wrote on his blog,

Put this at the top of your code:

\usepackage{rotating}

Simply to create a table with rotated column text use this code:

\begin{tabular}{|r|r|}\hline 
\begin{sideways}Paper\end{sideways} &\begin{sideways}Static\end{sideways} \\
\hline
HAR1994j & Journal \\
SWRT1996c & Conference \\
\hline
\end{tabular}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文