表配置

表配置

我是 LaTeX 新手,目前正在努力嘗試為實驗室報告建立表格。該表必須如下所示:

在此輸入影像描述

我嘗試查看\tabular,\tabulary\tabularx環境,但我似乎不知道如何設定第一行。誰能給我一些關於如何最好地設置右側的提示,使其具有如圖所示的 2 行,而左側則佔據高度相等的一行?

這是我嘗試過的,但沒有成功:

\begin{tabular}[C]{6}
\hline
\multirow{2}{*}{Configuration} 
\multirow{2}{*}{Flow rate (L/hour)} &
\multicolumn{2}{*}{Water Temperatures (\degree C)} 
\multicolumn{2}{*}{Pipe Surface Temperatures (\degree C)}
\end{tabular}

答案1

表格最好用booktabs包裝來完成:

在此輸入影像描述

代碼:

\documentclass{article}
\usepackage{booktabs}
\usepackage{siunitx}

\begin{document}
\begin{tabular}{cccccc}\toprule
Configuration & Flow rate   & \multicolumn{2}{c}{Water Temperatures (\si{\degree}C)} &
\multicolumn{2}{c}{Pipe Surface Temperatures (\si{\degree}C)} \\
              & (L/hour) & Inlet & Outlet & Inlet & Outlet\\
\cmidrule(lr){1-1} \cmidrule(lr){2-2} \cmidrule(lr){3-4} \cmidrule(lr){5-6}

  10\% & 16 & 44.9 & 24.5 & 39.8 & 23.7 \\
  10\% & 16 & 44.9 & 24.5 & 39.8 & 23.7 \\
\bottomrule
\end{tabular}
\end{document}

相關內容