我使用以下代码,基于如何使用 siunitx 在表格中使用带有 SI 单位的字母创建一个表。
如何让列足够宽以容纳内容。设置列尺寸的最佳方法是什么?
\begin{table}[!htp] % not just 'h!'
\centering % not a center environment
\begin{tabular}{
@{}
l
S[table-format=1.1]
S[table-format=1.3]
S[table-format=1.2]
S[table-format=1.2]
S[table-format=1.2]
@{}
}
\toprule
Inductor &
{$size$} &
{$inductance$} &
{$sensitivity$} &
{$dc resistance d$} &
{$SRF$}\\
&
{(\si{\milli\meter})} &
{(\si{\milli\henry})} &
{(\si{\milli\volt\per\ampere\meter})} &
{(\si{\ohm})} &
{(\si{\kilo\hertz})} \\
\midrule
Premo &8.6x3x2.7 &18.5 &90 &165 &300 \\
TDK &7x12x33 &8.6 &23 &112 &135 \\
\bottomrule
\end{tabular}
\label{tab:inductor}
\end{table}
答案1
在标准行宽下,表格稍微有点过满,因此我使用了一个tabular*
技巧;您需要检查这是否有效并且列间空间是否足够,否则您可以求助于\small
。
第二列不是S
,但您应该使用\num
它来输入。正确设置其他列的位数。
请不要使用数学模式来表示斜体:它不适合这个目的。
\documentclass[a4paper]{article}
\usepackage{amsmath,siunitx,booktabs}
\begin{document}
\begin{table}[htp]
\centering
\setlength{\tabcolsep}{0pt} % let TeX do the calculations
\begin{tabular*}{\textwidth}{
@{\extracolsep{\fill}}
l
c
S[table-format=2.1]
S[table-format=2.0]
S[table-format=3.0]
S[table-format=3.0]
@{}
}
\toprule
Inductor &
{\itshape size} &
{\itshape inductance} &
{\itshape sensitivity} &
{\itshape DC resistance $d$} &
{\itshape SRF}\\
&
{(\si{\milli\meter\cubed})} &
{(\si{\milli\henry})} &
{(\si{\milli\volt\per\ampere\meter})} &
{(\si{\ohm})} &
{(\si{\kilo\hertz})} \\
\midrule
Premo & \num{8.6x3x2.7} & 18.5 & 90 & 165 & 300 \\
TDK & \num{7x12x33} & 8.6 & 23 & 112 & 135 \\
\bottomrule
\end{tabular*}
\caption{A table}\label{xyz}
\end{table}
\end{document}
答案2
对大小列使用 S 列说明符实际上毫无意义。但是,{...}
如果列单元格中没有数字,请使用符号,当然,请使用正确的数字规范:3.1 ( iii.d
) 为三个整数和一个小数保留空间
\documentclass[a4paper, 12pt]{article}
\usepackage{amsmath,siunitx,booktabs}
\begin{document}
\begin{tabular}{
@{}
l
S[table-format=1.1]
S[table-format=2.1]
S[table-format=2.1]
S[table-format=3.1]
S[table-format=3.1]
@{}
}
\toprule
Inductor &
{\itshape size} &
{\itshape inductance} &
{\itshape sensitivity} &
{\itshape dc resistance d} &
{\itshape SRF}\\
&
{(\si{\milli\meter})} &
{(\si{\milli\henry})} &
{(\si{\milli\volt\per\ampere\meter})} &
{(\si{\ohm})} &
{(\si{\kilo\hertz})} \\
\midrule
Premo &{8.6x3x2.7} &18.5 &90 &165 &300 \\
TDK &{7x12x33} &8.6 &23 &112 &135 \\
\bottomrule
\end{tabular}
\结束{文档}