我正在制作一个包含单列和 2 个合并列的表格。我遇到了两个问题,首先,数据很长,不在页面区域内,超出了边界。
我怎样才能克服这些问题?
预备示例和表格代码如下:
\documentclass[authoryear,preprint,review,12pt]{elsarticle}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\begin{document}
\begin{table}
\caption{Table aaaa}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}\label{West Hebr Indexes}
\caption{West Hebrides Indexes for the wind datasets}
\hline
• &\multicolumn{8}{c|}{West Hebrides} \\
\hline
• & \multicolumn{2}{c|}{$H_{s}$} &\multicolumn{2}{c|}{$T_{p}$} &\multicolumn{2}{c|}{$T_{z}$} & \multicolumn{2}{c|}Dir \\
\hline
• & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR \\
\hline
Average Buoy & • & • & • & • & • & • & • & • \\
\hline
Average SWAN & • & • & • & • & • & • & • & • \\
\hline
Bias & • & • & • & • & • & • & • & • \\
\hline
rms & • & • & • & • & • & • & • & • \\
\hline
OPI & • & • & • & • & • & • & • & • \\
\hline
MPI & • & • & • & • & • & • & • & • \\
\hline
SI & • & • & • & • & • & • & • & • \\
\hline
\end{table}
\end{tabular}
\end{document}
答案1
正如 Zarko 所说,标题应该超出tabular
环境范围。此外,您还犯了一些错误,例如\multicolumn{2}{c|}Dir
应该这样做\multicolumn{2}{c|}{Dir}
。
话虽如此,你还是可以通过一些方法来调整表格在页面中的尺寸。首先,将\footnotesize
(或\small
) 放在 后面\begin{table}
。
\documentclass[authoryear,preprint,review,12pt]{elsarticle}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\begin{document}
\begin{table}
\footnotesize
% \caption{Table aaaa}
\caption{West Hebrides Indexes for the wind datasets}\label{West Hebr Indexes}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|}\hline
• &\multicolumn{8}{c|}{West Hebrides} \\
\hline
• & \multicolumn{2}{c|}{$H_{s}$} &\multicolumn{2}{c|}{$T_{p}$} &\multicolumn{2}{c|}{$T_{z}$} & \multicolumn{2}{c|}{Dir} \\
\hline
• & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR \\
\hline
Average Buoy & • & • & • & • & • & • & • & • \\
\hline
Average SWAN & • & • & • & • & • & • & • & • \\
\hline
Bias & • & • & • & • & • & • & • & • \\
\hline
rms & • & • & • & • & • & • & • & • \\
\hline
OPI & • & • & • & • & • & • & • & • \\
\hline
MPI & • & • & • & • & • & • & • & • \\
\hline
SI & • & • & • & • & • & • & • & • \\
\hline
\end{tabular}
\end{table}
\end{document}
resizebox
或者从graphicx
包装中使用或更好地使用adjustbox
。
\documentclass[authoryear,preprint,review,12pt]{elsarticle}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{adjustbox}
\begin{document}
\begin{table}
% \caption{Table aaaa}
\caption{West Hebrides Indexes for the wind datasets}\label{West Hebr Indexes}
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{*{9}{|c}|}\hline
• &\multicolumn{8}{c|}{West Hebrides} \\
\hline
• & \multicolumn{2}{c|}{$H_{s}$} &\multicolumn{2}{c|}{$T_{p}$} &\multicolumn{2}{c|}{$T_{z}$} & \multicolumn{2}{c|}{Dir} \\
\hline
• & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR \\
\hline
Average Buoy & • & • & • & • & • & • & • & • \\
\hline
Average SWAN & • & • & • & • & • & • & • & • \\
\hline
Bias & • & • & • & • & • & • & • & • \\
\hline
rms & • & • & • & • & • & • & • & • \\
\hline
OPI & • & • & • & • & • & • & • & • \\
\hline
MPI & • & • & • & • & • & • & • & • \\
\hline
SI & • & • & • & • & • & • & • & • \\
\hline
\end{tabular}
\end{adjustbox}
\end{table}
\end{document}
作为第三个选项,您可以使用横向页面。放入\usepackage{pdflscape}
前言并封闭table
在landscape
环境中。
\documentclass[authoryear,preprint,review,12pt]{elsarticle}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{pdflscape}
\begin{document}
\begin{landscape}
\begin{table}
% \caption{Table aaaa}
\caption{West Hebrides Indexes for the wind datasets}\label{West Hebr Indexes}
\begin{tabular}{*{9}{|c}|}\hline
• &\multicolumn{8}{c|}{West Hebrides} \\
\hline
• & \multicolumn{2}{c|}{$H_{s}$} &\multicolumn{2}{c|}{$T_{p}$} &\multicolumn{2}{c|}{$T_{z}$} & \multicolumn{2}{c|}{Dir} \\
\hline
• & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR & ECMWF & CFSR \\
\hline
Average Buoy & • & • & • & • & • & • & • & • \\
\hline
Average SWAN & • & • & • & • & • & • & • & • \\
\hline
Bias & • & • & • & • & • & • & • & • \\
\hline
rms & • & • & • & • & • & • & • & • \\
\hline
OPI & • & • & • & • & • & • & • & • \\
\hline
MPI & • & • & • & • & • & • & • & • \\
\hline
SI & • & • & • & • & • & • & • & • \\
\hline
\end{tabular}
\end{table}
\end{landscape}
\end{document}