答案1
您可以将文本放入tabular
单元格中multirow
。
\documentclass{article}
\usepackage{multirow}
\begin{document}
\renewcommand{\arraystretch}{1.1}
\begin{tabular}{|cp{3cm}p{3cm}|}
\hline
\multirow{3}{*}{\begingroup\renewcommand{\arraystretch}{1.1}%
\begin{tabular}{@{}c@{}}%
L\\ A\\ T\\ E\\ R\\ A\\ L\\
\end{tabular}\endgroup
} & text & text\\[1.8em]
\cline{2-3}
& text & text\\[1.8em]
\cline{2-3}
& text & text\\[1.8em]
\hline
\end{tabular}
\end{document}
为了简化问题,你可以使用以下答案之一这个问题以避免必须\\
自己输入所有内容。
\documentclass{article}
\usepackage{multirow}
\def\endpft{\empty}%
\def\rst{}
\def\pft#1#2\endpft{\ifx#2\endpft%
\else%
#1\\%
\def\rst{#2}%
\pft#2\endpft%
\fi}
\newcommand{\vtext}[2][]{\begingroup\renewcommand{\arraystretch}{1.1}%
\begin{tabular}[#1]{@{}c@{}}%
\pft#2\endpft\rst%
\end{tabular}\endgroup}
\renewcommand*\familydefault{\sfdefault}
\begin{document}
\renewcommand{\arraystretch}{1.1}
\begin{tabular}{|cp{3cm}p{3cm}|}
\hline
\multirow{3}{*}{\vtext{LATERAL}} & text & text\\[1.8em]
\cline{2-3}
& text & text\\[1.8em]
\cline{2-3}
& text & text\\[1.8em]
\hline
\end{tabular}
\end{document}