largura da tabela tabu automática/manual

largura da tabela tabu automática/manual

Como posso deixar o latex escolher automaticamente a largura da coluna de forma que cada entrada não entre em \newline ? Como posso definir manualmente a largura de cada coluna e ter certeza de que tudo soma \columnwidth ?

\begin{table}[t]
    \begin{tabu} to \columnwidth { | X[l] || X[c] | X[c] | }
        \hline
        \textbf{Component} & \textbf{Time in ms} & \textbf{Time in \%} \\
        \hline
        Data processing & 42 & 33\\
        \hline
        RANSAC & 2 & 1 \\
        \hline  
        Region Proposals  & 82 & 64 \\
        \hline  
    \end{tabu}
    \caption{Breakdown in the running time our system with a single core machine. Time in ms is averaged across the validation set.}
    \label{tab:componentruntime}
\end{table}

insira a descrição da imagem aqui

Responder1

Use o bom e velho tabular*ambiente:

\documentclass[twocolumn]{article}

\usepackage{lipsum}

\begin{document}

\lipsum[2]

\begin{table}[htp]

\begin{tabular*}{\columnwidth}{  @{\extracolsep{\fill}} |l||c|c| @{} }
\hline
\textbf{Component} & \textbf{Time in ms} & \textbf{Time in \%} \\
\hline
Data processing & 42 & 33\\
\hline
RANSAC & 2 & 1 \\
\hline
Region Proposals  & 82 & 64 \\
\hline
\end{tabular*}

\caption{Breakdown in the running time our system with a single core 
  machine. Time in ms is averaged across the validation set.}
\label{tab:componentruntime}

\end{table}

\lipsum

\end{document}

insira a descrição da imagem aqui

A versão obrigatória com booktabse sem regra vertical. O alinhamento à esquerda na primeira coluna torna desnecessária a regra vertical dupla (na verdade, nunca é). Dado que as entradas não estão divididas em linhas, as regras horizontais podem ser reduzidas ao mínimo.

\documentclass[twocolumn]{article}
\usepackage{booktabs}

\usepackage{lipsum}

\begin{document}

\lipsum[2]

\begin{table}[htp]

\begin{tabular*}{\columnwidth}{  @{\extracolsep{\fill}} lcc @{} }
\toprule
\textbf{Component} & \textbf{Time in ms} & \textbf{Time in \%} \\
\midrule
Data processing & 42 & 33\\
RANSAC & 2 & 1 \\
Region Proposals  & 82 & 64 \\
\bottomrule
\end{tabular*}

\caption{Breakdown in the running time our system with a single core 
  machine. Time in ms is averaged across the validation set.}
\label{tab:componentruntime}

\end{table}

\lipsum

\end{document}

insira a descrição da imagem aqui

Ao carregar também siunitxvocê pode facilmente obter o alinhamento das figuras.

\documentclass[twocolumn]{article}
\usepackage{booktabs}
\usepackage{siunitx}

\usepackage{lipsum}

\begin{document}

\lipsum[2]

\begin{table}[htp]

\begin{tabular*}{\columnwidth}{
  @{\extracolsep{\fill}}
  l
  S[table-format=2.0]
  S[table-format=2.0]
  @{}
 }
\toprule
\textbf{Component} & \textbf{Time in ms} & \textbf{Time in \%} \\
\midrule
Data processing & 42 & 33\\
RANSAC & 2 & 1 \\
Region Proposals  & 82 & 64 \\
\bottomrule
\end{tabular*}

\caption{Breakdown in the running time our system with a single core 
  machine. Time in ms is averaged across the validation set.}
\label{tab:componentruntime}

\end{table}

\lipsum

\end{document}

insira a descrição da imagem aqui

informação relacionada