我有以下程式碼:
\documentclass{article}
\usepackage{multirow}
\usepackage{geometry}
\geometry{
a3paper,
total={170mm,300mm},
left=20mm,
top=20mm,
}
\begin{document}
\begin{center}
\begin{tabular}{ |p{3cm}||p{3cm}|p{3cm}|p{3cm}|p{3cm}|p{3cm}|p{3cm}| }
\hline
\multicolumn{7}{|c|}{Frequency/f, Hz $\pm 0.001$} \\
\hline
Mass,m /Kg& Trial 1 & Trial 2 & Trial 3 & Trial 4 & Trial 5 & Average \\
\hline
0.050 & 16.200 & 16.630 & 16.560 & 16.840 & 16.550 & 16.556 \\
\hline
0.100 & 23.650 & 22.800 & 22.810 & 22.970 & 22.700 & 22.986 \\
\hline
0.150 & 28.060 & 27.650 & 27.600 & 27.470 & 27.440 & 26.644 \\
\hline
0.200 & 34.300 & 32.030 & 32.340 & 32.380 & 32.030 & 32.616 \\
\hline
0.250 & 35.500 & 35.480 & 35.420 & 35.520 & 35.350 & 35.454 \\
\hline
0.300 & 38.780 & 38.820 & 38.580 & 39.000 & 38.790 & 38.794 \\
\hline
0.350 & 41.800 & 42.050 & 41.750 & 41.980 & 41.950 & 41.906 \\
\hline
0.400 & 44.400 & 44.760 & 44.670 & 45.020 & 44.900 & 44.750 \\
\hline
0.450 & 47.450 & 47.550 & 47.520 & 47.500 & 47.650 & 47.534 \\
\hline
0.500 & 50.350 & 50.190 & 49.840 & 50.170 & 49.900 & 50.090 \\
\hline
\end{tabular}
\end{center}
\end{document}
產生輸出:
但我希望它看起來像這樣:
目前,我正在處理 A3 文檔,但由於這是一篇研究論文,我需要以 A4 格式提交。然而,它在頁面末尾被切斷。
所以我的兩個問題是:
如何建立上圖的表格?
如何將其格式化以適合 A4 文件?
答案1
我建議您採取兩個主要修復措施:首先,從第 1 列到第 6 列中的所有數字中省略最後一位數字 ( 0
)。更加開放。借助包裝機械siunitx
及其S
塔型,第一項工作可以輕鬆完成。透過採用booktabs 套件的畫線巨集(例如\toprule
和),第二項工作變得簡單。\bottomrule
下面的螢幕截圖邊緣的框架線是因為geometry
套件載入了選項而繪製的showframe
。請注意,表格現在可以輕鬆放入 A4 紙文字區塊的寬度。
\documentclass{article}
\usepackage{geometry}
\geometry{a4paper, % note: 'a4paper', not 'a3paper'
showframe, % omit 'showframe' option in real document
%total={170mm,300mm},
%left=20mm, top=20mm,
margin=20mm
}
\usepackage{siunitx,booktabs}
\newcolumntype{T}[1]{S[table-format=#1]}
\begin{document}
\null
\begin{center}
\sisetup{round-mode=places,round-precision=2} % <-- default: rounding to 2 decimal digits
\begin{tabular}{ @{}
T{1.2}
*{5}{T{2.2}}
% increase # of decimal digits to 3:
S[table-format=2.3,round-precision=3]
S[table-format=1.3,round-precision=3] @{}}
\toprule
{Mass/ $m$, \unit{\kilo\gram}} &
\multicolumn{6}{c}{Frequency/ $f$, \unit{\hertz} $\pm 0.001$} &
{Tension} \\
\cmidrule(lr){2-7}
& {Trial 1} & {Trial 2} & {Trial 3} & {Trial 4} & {Trial 5} & {Average} \\
\midrule
0.050 & 16.200 & 16.630 & 16.560 & 16.840 & 16.550 & 16.556 & 0.491 \\
0.100 & 23.650 & 22.800 & 22.810 & 22.970 & 22.700 & 22.986 & 0.981 \\
0.150 & 28.060 & 27.650 & 27.600 & 27.470 & 27.440 & 26.644 & \dots \\
0.200 & 34.300 & 32.030 & 32.340 & 32.380 & 32.030 & 32.616 & \dots \\
0.250 & 35.500 & 35.480 & 35.420 & 35.520 & 35.350 & 35.454 & \dots \\
\addlinespace
0.300 & 38.780 & 38.820 & 38.580 & 39.000 & 38.790 & 38.794 & \dots \\
0.350 & 41.800 & 42.050 & 41.750 & 41.980 & 41.950 & 41.906 & \dots \\
0.400 & 44.400 & 44.760 & 44.670 & 45.020 & 44.900 & 44.750 & \dots \\
0.450 & 47.450 & 47.550 & 47.520 & 47.500 & 47.650 & 47.534 & \dots \\
0.500 & 50.350 & 50.190 & 49.840 & 50.170 & 49.900 & 50.090 & \dots \\
\bottomrule
\end{tabular}
\end{center}
\end{document}
答案2
我在行之間添加了一些垂直空間(通過修改\arraystretch
)。
我冒昧地稍微改變了文字(m
斜體的質量,因為它是一個變量,括號之間的單位)。
預設情況下,\multirow
當指定寬度時,單元格會左對齊(如果改為寬度,我們輸入 a *
,則該列使用為多行指定的文字的自然寬度,但在這裡,自然寬度太大)。因此,為了使文字居中,我們\multirowsetup
用重新定義\renewcommand
。
\documentclass[a4paper]{article}
\usepackage{multirow}
\renewcommand{\arraystretch}{1.2}
\renewcommand{\multirowsetup}{\centering}
\begin{document}
\begin{center}
\begin{tabular}{|c|c|c|c|c|c|c|c|}
\hline
\multirow{2}{1.2cm}{Mass $m$ (kg)} & \multicolumn{6}{|c|}{Frequency $f$ (Hz) $\pm 0.001$} & \multirow{2}{*}{Tension} \\
\cline{2-7}
& Trial 1 & Trial 2 & Trial 3 & Trial 4 & Trial 5 & Average & \\
\hline
0.050 & 16.200 & 16.630 & 16.560 & 16.840 & 16.550 & 16.556 & 0.491\\
\hline
0.100 & 23.650 & 22.800 & 22.810 & 22.970 & 22.700 & 22.986 & 0.981 \\
\hline
0.150 & 28.060 & 27.650 & 27.600 & 27.470 & 27.440 & 26.644 & 1.472\\
\hline
0.200 & 34.300 & 32.030 & 32.340 & 32.380 & 32.030 & 32.616 & 1.962\\
\hline
0.250 & 35.500 & 35.480 & 35.420 & 35.520 & 35.350 & 35.454 & 2.453 \\
\hline
0.300 & 38.780 & 38.820 & 38.580 & 39.000 & 38.790 & 38.794 & 2.943\\
\hline
0.350 & 41.800 & 42.050 & 41.750 & 41.980 & 41.950 & 41.906 & 3.434\\
\hline
0.400 & 44.400 & 44.760 & 44.670 & 45.020 & 44.900 & 44.750 & 3.924\\
\hline
0.450 & 47.450 & 47.550 & 47.520 & 47.500 & 47.650 & 47.534 & 4.415 \\
\hline
0.500 & 50.350 & 50.190 & 49.840 & 50.170 & 49.900 & 50.090 & 4.905 \\
\hline
\end{tabular}
\end{center}
\end{document}
答案3
- 你的MWE沒有提供最後一欄的數據,所以我在裡面留了兩個寫內容給你
- 對於數字,我建議使用包
S
中定義的列類型siunitx
(作為tabularray
庫加載) - 帶有
tabularray
包表的程式碼簡短而簡單:
\documentclass{article}
\usepackage[a4paper]{geometry} % <---
\usepackage{tabularray}
\UseTblrLibrary{siunitx}
\begin{document}
\begin{center}
\begin{tblr}{hlines, vlines,
colspec = { Q[c,si={table-format=1.3}]
*{6}{X[c,si={table-format=2.3}]}
X[c,si={table-format=1.3}]
},
row{1,2} = {guard}
}
\SetCell[r=2]{f} Mass, $m$ (kg)
& \SetCell[c=6]{c} Frequency, $f$ (Hz) $\pm 0.001$
& & & & & & \SetCell[r=2]{f} Tension \\
& Trial 1 & Trial 2 & Trial 3 & Trial 4 & Trial 5 & Average & \\
0.050 & 16.200 & 16.630 & 16.560 & 16.840 & 16.550 & 16.556 & 0.491 \\
0.100 & 23.650 & 22.800 & 22.810 & 22.970 & 22.700 & 22.986 & \\
0.150 & 28.060 & 27.650 & 27.600 & 27.470 & 27.440 & 26.644 & \\
0.200 & 34.300 & 32.030 & 32.340 & 32.380 & 32.030 & 32.616 & \\
0.250 & 35.500 & 35.480 & 35.420 & 35.520 & 35.350 & 35.454 & \\
0.300 & 38.780 & 38.820 & 38.580 & 39.000 & 38.790 & 38.794 & \\
0.350 & 41.800 & 42.050 & 41.750 & 41.980 & 41.950 & 41.906 & \\
0.400 & 44.400 & 44.760 & 44.670 & 45.020 & 44.900 & 44.750 & \\
0.450 & 47.450 & 47.550 & 47.520 & 47.500 & 47.650 & 47.534 & \\
0.500 & 50.350 & 50.190 & 49.840 & 50.170 & 49.900 & 50.090 & 4.905 \\
\end{tblr}
\end{center}
\end{document}