如何减小表格中单元格的大小?

如何减小表格中单元格的大小?

我正在绘制一个只有一列的长表格。我绘制了表格,但单元格大小太大。我怎样才能减小单元格大小?我想让下一页的线条继续在页面的右上角而不是左角。我该怎么做。我的代码如下。我附上了错误图片。 在此处输入图片描述

\begingroup
    \setcellgapes{3pt}
    \makegapedcells
 \begin{xltabular}{\linewidth}{ |l||*{1}{>{\hskip 1em}X|} }
%\begin{xltabular}{ |p{3 cm}||p{3.8cm}| }
\caption{Simulation data of overall system}
\label{tab:overalldata}\\
    \Xhline{1pt}
\makecell[t]{System parameters}
    &   \mcx{Simulation data}\\
    \Xhline{0.6pt}
\endfirsthead
%\caption[]{Data comparison of steady state and transient simulation}    \\
    \Xhline{1pt}
\makecell{System parameters}
    &   \mcx{Simulation data}\\
    \Xhline{0.6pt}
\endhead
    \Xhline{0.6pt}
\multicolumn{4}{r}{\small\textit{Continue on the next page}}
\endfoot
    \Xhline{1pt}
\endlastfoot
Pel\_Boiler (\si{KW})    &92.572\\ 
N\_STEAM\_RECY (\si{mol/s}) &1.686\\
Pel\_SH (\si{KW})   &66.869 \\ 
T\_AC\_OUT (\si{K}) &945.732\\
T\_CC\_OUT (\si{K}) &885.8513695\\
\hline
\end{xltabular}
\endgroup

答案1

我猜你正在寻找这样的东西:

在此处输入图片描述

上表中使用了longtablesiunitx包。xparse用于定义新命令,使用 而不是\multicolumn{...}{...}{<content>}。 显示的结果需要(至少)四个以下 MWE 的编译:

\documentclass{article}
\usepackage[skip=1ex]{caption}
\usepackage{cellspace, longtable}
    \setlength\cellspacetoplimit{3pt}
    \setlength\cellspacebottomlimit{3pt}
\usepackage{siunitx}
\sisetup{per-mode=symbol}
\usepackage{xparse}
\NewExpandableDocumentCommand\mcc{O{|Cc|}m}
    {\multicolumn{2}{#1}{#2}}
\NewExpandableDocumentCommand\mcl{O{c}m}
    {\multicolumn{1}{#1}{#2}}

\begin{document}            
    \begin{longtable}{| Cr s[table-unit-alignment = left] 
                      |    S[zero-decimal-to-integer,
                             round-mode=places,
                             round-precision=3]
                      |}
\caption{Simulation data of overall system.}
\label{tab:s:align}                                     \\
    \hline
\mcc{System parameters}             & {value}           \\
    \hline
\endfirsthead
\caption[]{Simulation data of overall system.}    \\
    \hline
\mcc{System parameters}             & {value}           \\
    \hline
\endhead
    \hline
\mcl{}          & \mcc[r]{\footnotesize{Continue on the next page}}
\endfoot
    \hline
\endlastfoot
% table body
Pel\_Boiler     & \kilo\watt        &   92.572      \\
N\_STEAM\_RECY  & \mol\per\second   &    1.686      \\
Pel\_SH         & \kilo\watt        &   66.869      \\
T\_AC\_OUT      & \kelvin           &  945.732      \\
T\_CC\_OUT      & \kelvin           &  885.8513695  \\
    \end{longtable}
\end{document}

编辑:

由于在 aditem MWEmakegapedcells中定义的宏makecell与格式s和列不兼容,因此该包被替换为用于在单元格中添加垂直空间。Smakecellcellspace

现在还向列添加了舍入选项S

相关内容