我想在表格环境中的旋转框中添加新行。MWE 如下:
\documentclass[english]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{lmodern}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{p{5cm} | p{5cm}}
A & B \\
Here it \newline works & \rotatebox{90}{Here it \newline doesn‘t} \\
\end{tabular}
\end{document}
提前致谢!
答案1
的第二个参数的内容\rotatebox
受制于一些关于可能内容的限制性假设。这就是您在查询中尝试的方法不太“有效”的原因。
一个灵活的解决方案是定义自定义tabular
环境并将其用作 的第二个参数\rotatebox
。以下示例就是这样做的。
\documentclass[english]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype,array,lmodern,graphicx}
\newcommand\mytab[1]{\begin{tabular}[t]{c}#1\end{tabular}}
\newcommand\rotbox[1]{\rotatebox[origin=c]{90}{\mytab{#1}}}
\begin{document}
\begin{tabular}{|p{5cm}|>{\centering\arraybackslash}p{5cm}|}
\hline
A & B \\
\hline
Here it \newline works & \rotbox{Here it\\does too} \\
\hline
\end{tabular}
\end{document}