自动调整单元格高度

自动调整单元格高度

如何根据内容自动调整单元格高度?具有正常分布的单元格的高度似乎被压低了,并且没有居中对齐。有什么想法吗?类似于自动调整单元格宽度

在此处输入图片描述

\documentclass{article}%%%%%\begin{article}
\usepackage{booktabs}
\usepackage{array}%%%%%{tabular}
\begin{document}

    \begin{table}[htp]
     \centering
    \begin{tabular}{{}*5{>{\hspace{0pt}\raggedright\arraybackslash}p{\dimexpr(\textwidth-10\tabcolsep)/6\relax}}@{}}
     \toprule
     %\multicolumn{6}{c}{Care Type} \\
     %\cmidrule(l{2em}r{2em}){1-6}
    \addlinespace[2ex]
     \textbf{Lead author} & \textbf{Ref.} & \textbf{$\log_{10}$ reduction} & \textbf{In-vivo (i) /-vitro (t)} & \textbf{Organism} \\
     \midrule
     Girou &\cite{girou2002} & & i & Gram -ve bacteria\\
     Weber & \cite{weber2003} & (-0.2-0.2)&t &Bacilus spores\\
     Sickbert-Bennet &\cite{sickbert2005} & $N\sim$(1.10,0.8129)& t & \\
     Widmer &\cite{widmer2000} & & i & \\
       \bottomrule
     \end{tabular}
    \smallskip
     \caption{Literature for $log_{10}$ reductions of CFU for waterless alcohol rub, displayed as a continuous distribution or as a range}
     \label{tab:alcohol_rub}
    \end{table}
\end{document}

答案1

请始终测试您的代码并根据您发布的代码生成图像。

您的单元格与第二行对齐N~...。由于您在表格前言中添加了 ,行可能会中断(在第一行只留下一个支柱)\hspace{0pt}。要么不要添加它,要么使用 ,\leavevmode\nolinebreak\hspace{0pt}这样就不会在那里中断。

主要问题是条目对于您指定的列宽来说太宽。

相关内容