答案1
答案2
如果您想使列垂直居中,您应该使用包m{...}
中的选项。array
这会影响列中所有单元格的对齐方式,如果您需要不同的对齐方式,请添加最小工作示例。
\documentclass{article}
\usepackage{array}
\usepackage{makecell}
\usepackage{graphicx}
\begin{document}
\begin{tabular}{|m{1em}|c|}
\hline
& \\
\hline
\rotatebox{90}{standards }& \makecell{standards \\ just\\ to \\ show \\ that \\ the \\ previous \\ it's centered }\\
\hline
\end{tabular}
\end{document}