Problem mit zu großer Tabelle

Problem mit zu großer Tabelle

Ich versuche, mit Latex eine große Tabelle zu erstellen, habe aber ein Problem mit dem darin enthaltenen Text, er überschreitet die Seite.

hier der Code:

 \begin{table*} \centering
 \begin{tabular*}{\textwidth}{@{\extracolsep{\stretch{2}}}*{2}{l}@{}}  
 \toprule
 Source & La commission de contrôle procède à une véritable évaluation  des   conséqu-   \\  & ences sur l'investissement public.\\
 \hline
     Cible & The control commitee carries out a true evaluation of the  impact on public  \\  & investment. \\ \hline  Référence  & The
 control commitee carries out a true evaluation of the impact on gove- 
 \\ & rnment investment. \\ \hline

 %\textsc{Trig-seq}${_{m-n}}_{sel}$ & it must take into account the
 fact that insurance companies \textbf{need} \\ & \textbf{of of} some
 time.  \\ \hline ${Trig_{m-n}}_{(k)} + ML$    &  The control commitee
 carries out a true assessment of the impact on pu- \\  & blic
 investment \\ \hline  ${Trig_{m-n}}_{(k)}$ &  The control commitee
 process to a true assessment of the impact on pu- \\  & blic
 investment \\ \hline   ${Trig_{m-n}}_{(sel)} + ML$  & The control
 commitee procède to a true evaluation of the conséquences on   \\ &
 public investment.  \\ \hline         ${Trig_{m-n}}_{(sel)}$  & The
 control commitee procède to a correct evaluation of the conséquences  
 \\ & on government investment.  \\ \hline                     \toprule
 \end{tabular*}  \caption{Exemple de traductions d'une phrase issue du
 corpus \textsc{Europarl} avec les différents modèles de
 traduction\label{exemple}} \end{table*}

Hier das Bild der resultierenden TabelleBildbeschreibung hier eingeben

Irgendeine Idee, die mir helfen könnte, bitte?

Prost

Antwort1

Benutze einen tabularx:

\documentclass[a4paper,french]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[showframe]{geometry} 
\usepackage{babel} 
\usepackage{tabularx,booktabs}
\begin{document}

\begin{table}[!htb]
\begin{tabularx}{\textwidth}{@{}l X @{}}  \toprule
Source & La commission de contrôle procède à une véritable évaluation  des   
conséquences sur l'investissement public.\\\hline
Cible & The control commitee carries out a true evaluation of the  impact on public 
investment. \\ \hline  
Référence  & The control commitee carries out a true evaluation of the impact on 
government investment. \\ \hline

\textsc{Trig-seq}${_{m-n}}_{sel}$ & it must take into account the
fact that insurance companies \textbf{need} \textbf{of of} some time.  \\ \hline 
${Trig_{m-n}}_{(k)} + ML$    &  The control commitee
carries out a true assessment of the impact on public investment \\ \hline  
${Trig_{m-n}}_{(k)}$ &  The control commitee
process to a true assessment of the impact on public investment \\ \hline   
${Trig_{m-n}}_{(sel)} + ML$  & The control commitee procède to a true evaluation of 
the conséquences on public investment.  \\ \hline         
${Trig_{m-n}}_{(sel)}$  & The control commitee procède to a correct evaluation 
of the conséquences  on government investment.  \\ \bottomrule
\end{tabularx}  
\caption{Exemple de traductions d'une phrase issue du
  corpus \textsc{Europarl} avec les différents modèles detraduction\label{exemple}} 
\end{table}

\end{document}

Bildbeschreibung hier eingeben

Antwort2

Für den automatischen Zeilenumbruch müssen Sie den entsprechenden Spaltentyp verwenden. Beispielsweise p{<width>}oder X, wenn Sie tabularxdie Umgebung verwenden (was ich bevorzuge):

\documentclass{article}
    \usepackage{booktabs,tabularx}
    \usepackage[utf8]{inputenc}

    \usepackage[showframe]{geometry}


\begin{document}
    \begin{table}
    \begin{tabularx}{\textwidth}{lX}
    \toprule
Source      &   La commission de contrôle procède à une véritable 
                évaluation des conséqu ences sur l'investissement public.\\
    \hline
Cible       &   The control commitee carries out a true evaluation of the  
            impact on public   investment. \\
    \hline  
Référence   &   The control commitee carries out a true evaluation 
                of the impact on government investment. \\ 
    \hline
    \end{tabularx}  
\caption{Exemple de traductions d'une phrase issue du corpus \textsc{Europarl} avec les différents modèles de traduction} 
    \label{exemple}
    \end{table}
\end{document}

Das gibt:

Bildbeschreibung hier eingeben

verwandte Informationen