我有这个代码
\begin{table}[h]
\caption{Numerical example geometry}
\label{tab_numerical_geo}
\begin{center}
\scalebox{0.9}{
\begin{tabular}{|c|c|c|c|c|c|c|}
\hline
$d^A$ & $d^B$ & $d^C$ & $l^A_{12}$ & $l^C_{12}$ & $h^A$ & $h^C$ \\
\hline
-0.4434 & 0.3455 & 0.7798 & 0.1023 & 0.1523 & 0.04 & 0.023 \\
\hline
\end{tabular}
}
\end{center}
\end{table}
我使用\scalebox
它来缩小表格的大小,但它会缩小标题和表格之间的空间。如果不使用它,就会有一个空间,这对我的文章来说很好。
有人知道如何在保留空间的情况下缩小表格大小吗?我尝试使用\footnotesize
而不是\reducebox
,但结果是一样的。谢谢!
答案1
一些建议:
为了在标题和表格材料之间创建更多间距,请加载
caption
包并为选项指定所需的值skip
;在下面的示例中,我设置了skip=0.5\baselineskip
。不要使用
center
环境;相反table
,使用\centering
宏。由于数据行中的材料显然可能包含负数,因此请使用环境
array
而不是环境。这样做可以让您免于在标题行中tabular
输入大量符号。$
如果必须使用较小的字体大小,请不要使用
\scalebox
,因为这样做会产生非常“细长”的输出。相反,请使用\small
(将字体大小线性缩小 10%)或\footnotesize
(将字体大小线性缩小 20%)。为了在标题行和数据行之间有更好的间距,请插入印刷支柱。
\documentclass{article}
\usepackage[skip=0.5\baselineskip]{caption}
%% define a few struts
%% (from code by Claudio Beccari in TeX and TUG News, Vol. 2, 1993)
\newcommand\Tstrut{\rule{0pt}{2.9ex}} % "top" strut
\newcommand\Bstrut{\rule[-1.2ex]{0pt}{0pt}} % "bottom" strut
\newcommand\TBstrut{\Tstrut\Bstrut} % "top and bottom" strut
\begin{document}
\begin{table}
\caption{Numerical example geometry}
\label{tab_numerical_geo}
\small % better than \scalebox{0.9}{...}
\centering
$\begin{array}{|*{7}{c|}}
\hline
d^A\TBstrut & d^B & d^C & l^{A}_{12} & l^C_{12} & h^A & h^C \\
\hline
-0.4434\TBstrut & 0.3455 & 0.7798 & 0.1023 & 0.1523 & 0.04 & 0.023 \\
\hline
\end{array}$
\end{table}
\end{document}
答案2
尝试\bigskip
在标题后添加。它将添加一个空白行,从而创建所需的空间。
\documentclass{article}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{table}[h]
\caption{Numerical example geometry}
\bigskip
\label{tab_numerical_geo}
\begin{center}
\scalebox{0.9}{
...
答案3
使用包caption
和\resizebox
:
\documentclass[twocolumn]{article}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{table}[!htb]
\caption{Numerical example geometry\strut}\label{tab_numerical_geo}
\centering
\resizebox{\linewidth}{!}{%
\begin{tabular}{@{}ccccccc@{}}\toprule
$d^A$ & $d^B$ & $d^C$ & $l^A_{12}$ & $l^C_{12}$ & $h^A$ & $h^C$ \\ \midrule
$-0.4434$ & 0.3455 & 0.7798 & 0.1023 & 0.1523 & 0.04 & 0.023 \\\bottomrule
\end{tabular}}
\end{table}
\blindtext
\end{document}
答案4
以下是一些表格排版建议。如果不知道您的限制,很难更具体。为了确保标题不会太靠近表格顶部,我在\strut
标题末尾使用了。
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
\caption{Numerical example geometry\strut}
\label{tab_numerical_geo}
\centering
\begin{tabular}{@{}ccccccc@{}}
\toprule
$d^A$ & $d^B$ & $d^C$ & $l^A_{12}$ & $l^C_{12}$ & $h^A$ & $h^C$ \\
\midrule
$-0.4434$ & 0.3455 & 0.7798 & 0.1023 & 0.1523 & 0.04 & 0.023 \\
\bottomrule
\end{tabular}
\end{table}
\begin{table}
\caption{Numerical example geometry\strut}
\label{tab_numerical_geo2}
\catcode`!=\active
\def!{\phantom0}
\centering
\begin{tabular}{@{}lr@{}}
\toprule
$d^A$ &$-0.4434$ \\
$d^B$ &0.3455 \\
$d^C$ &0.7798 \\
$l^A_{12}$ &0.1023 \\
$l^C_{12}$ &0.1523 \\
$h^A$ &0.04!! \\
$h^C$ &0.023! \\
\bottomrule
\end{tabular}
\end{table}
\begin{table}
\caption{Numerical example geometry\strut}
\label{tab_numerical_geo3}
\catcode`!=\active
\def!{\phantom0}
\centering
\begin{tabular}{@{}lr@{\qquad}lr@{}}
\toprule
$d^A$ &$-0.4434$ &
$d^B$ &0.3455 \\
$d^C$ &0.7798 &
$l^A_{12}$ &0.1023 \\
$l^C_{12}$ &0.1523 &
$h^A$ &0.04!! \\
$h^C$ &0.023! \\
\bottomrule
\end{tabular}
\end{table}
\end{document}