单字符垂直对齐选项

单字符垂直对齐选项

如何将单个字符分解为如图所示的垂直对齐?在此处输入图片描述

答案1

我认为这个问题与这个,所以我从那里借用了主要代码。并用它来构建一些让你想起你的桌子的东西。

\documentclass{article}
\usepackage{array}
\usepackage{multirow}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\def\endpft{Yekitiyekitipeng}%<- something crazy
\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}{0.67}%
\begin{tabular}[#1]{@{}c@{}}%
\,\pft#2\endpft\rst%
\end{tabular}\endgroup}
\begin{document}
\begin{table}[htb]
\centering\renewcommand{\arraystretch}{1.3}%
\begin{tabular}{|*3{p{8em}|}C{7em}|}
\hline
\multicolumn{3}{|c|}{Increasing risk} & \multirow{2}{*}{\vtext{risk}~
 \vtext{~Increasing}} \\[3.5em]
\cline{1-3}
 & Current products & New products &  \\[3.5em]
\hline 
\end{tabular}
\end{table}
\end{document}

在此处输入图片描述

相关内容