自動調整單元高度

自動調整單元高度

如何根據內容自動調整儲存格高度?具有常態分佈的單元格的高度似乎被下推並且未居中對齊。有什麼想法嗎?如同自動調整單元格寬度

在此輸入影像描述

\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}這樣它就不允許在那裡中斷。

主要問題是條目對於您指定的列寬來說太寬。

相關內容