我想将表格单元格的内容置于标题的中央。在波兰文本文档的指南中,表格标题的内容必须水平和垂直居中。我发现这样的答案,但我无法实现它,因为代码没有解释。我还尝试了m
-type column 的应用以及\multirow[c]{1}{\mycolumnwidth}{My cell content}
它们的一些组合与\multicolumn
命令。通过调整文本高度\multirow{1}{\mycolumnwidth}[\myyshift]{My cell content}
不是一个解决方案 - 必须自动执行垂直居中。有一些答案用于纯 TeX,但我想使用tabular
或类似的环境。
梅威瑟:
\documentclass[table]{standalone}
\usepackage{dcolumn}
\usepackage{multirow}
\newcolumntype{d}{D{.}{.}{2.1}}
\renewcommand{\arraystretch}{1.3}
\begin{document}
\begin{tabular}{|l|d|d|}
\hline
\multicolumn{1}{|c|}{\multirow[c]{1}{23mm}{\centering\textbf{Title of side-heading}}} &
\multicolumn{1}{>{\centering}p{23mm}|}{\textbf{Arbitrary values}} &
\multicolumn{1}{>{\centering}p{23mm}|}{\textbf{Some other random values}}\\
\hline
Description 1 & 63.5 & 48.7\\
\hline
Description 2 & 88.4 & 51.3\\
\hline
\end{tabular}
\end{document}
答案1
使用siunitx
和makecell
:
\documentclass[table]{standalone}
\usepackage{siunitx}
\usepackage{makecell}
\renewcommand{\theadfont}{\normalsize\bfseries}
\renewcommand{\arraystretch}{1.3}
\begin{document}
\begin{tabular}{|l|S[table-format=2.1]|S[table-format=2.1]|}
\hline
{\thead{Title of\\ side-heading}} &
{\thead{Arbitrary\\ values}} &
{\thead{Some other\\ random\\ values}}\\
\hline
Description 1 & 63.5 & 48.7\\
\hline
Description 2 & 88.4 & 51.3\\
\hline
\end{tabular}
\end{document}