表格大小超出页面大小

表格大小超出页面大小

我正在制作一个包含单列和 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}前言并封闭tablelandscape环境中。

    \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}

在此处输入图片描述

相关内容