Estou usando o seguinte código, baseado emComo usar letra com unidade SI em tabela usando siunitxpara criar uma tabela.
Como posso tornar a coluna larga o suficiente para caber no conteúdo. Qual é a melhor maneira de configurar a coluna de dimensões?
\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}
Responder1
Com uma largura de linha padrão, a tabela fica um pouco cheia demais, então uso um tabular*
truque; você precisará verificar se isso funciona e se o espaço entre colunas é adequado, caso contrário você pode recorrer a \small
.
A segunda coluna não é S
, mas você deve usar \num
para suas entradas. Defina corretamente o número de dígitos para as outras colunas.
Por favor, não use o modo matemático para itálico: não se destina a esse propósito.
\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}
Responder2
Não faz sentido usar um especificador de coluna S para a coluna de tamanho. Entretanto, use a notação {...}
se você não tiver um número na célula da coluna e, claro, use especificações adequadas para números: 3.1 ( iii.d
) reserva espaço para três números inteiros e um decimal
\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}
\end{documento}