Distribuição da largura das colunas da tabela

Distribuição da largura das colunas da tabela

Peguei a seguinte tabela:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tabularx}
\usepackage{pbox}

\title{Skills Matrix}
\author{Raphael Fritz}
\date{February 2019}

\begin{document}

\begin{table}[h]
\begin{tabularx}{\textwidth}{|l|X|X|}
\hline
\multicolumn{3}{|l|}{\textbf{Programming Languages}}   \\ \hline
Skill & Degree of \newline experience \footnote{test} & Commentary \\ \hline
Java & 3 & this is a very long text and it needs much space in here \\ \hline \hline
\multicolumn{3}{|l|}{\textbf{test titel 2}} \\ \hline
           Skill & Degree of \newline experience & Commentary \\ \hline
\end{tabularx}
\end{table}

\end{document}

Se parece com isso

insira a descrição da imagem aqui

A segunda coluna não precisa de tanto espaço. O último precisa de mais espaço. Por que o segundo e o terceiro são distribuídos igualmente? Como posso mudar isso?

E como faço para que minha mesa ocupe toda a largura do meu papel?

Responder1

veja, se isso pode te ajudar:

\documentclass{article}
\usepackage{tabularx}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}  % <--

\begin{document}
    \begin{table}[ht] % <--
\begin{tabularx}{\textwidth}{|l|>{\hsize=0.6\hsize}L|   % <--
                                >{\hsize=1.4\hsize}L|}  % <--
\hline
\multicolumn{3}{|l|}{\textbf{Programming Languages}}   \\ \hline
Skill & Degree of experience \footnote{test} & Commentary \\ \hline
Java & 3 & this is a very long text and it needs much space in here \\ \hline \hline
\multicolumn{3}{|l|}{\textbf{test titel 2}} \\ \hline
           Skill & Degree of \newline experience & Commentary \\ \hline
\end{tabularx}
    \end{table}
\end{document}

insira a descrição da imagem aqui

informação relacionada