Tabu führender Raumeffekt

Tabu führender Raumeffekt

Führender Speicherplatz beeinträchtigt die Verwendung des Tabu-Pakets. Ist eine Aktualisierung der Set-Vorlage erforderlich? Die MEW-Datei finden Sie unten:

\documentclass{book}
\usepackage{tabu}
\begin{document}

{\fontsize{8bp}{10bp}\selectfont\begin{tabu}{p{222pt}p{40pt}}
\tabucline{-}
Total non-current\break liabilities&Employee benefits\vphantom{yg}\\
Total non-current\break liabilities&Employee benefits\\
Total non-current\break liabilities&Employee benefits\\
Total non-current\break liabilities&Employee benefits\\
\tabucline{-}
\end{tabu}}
\end{document} 

Bildbeschreibung hier eingeben

Antwort1

  • using tabu: Sie sollten sich bewusst sein, dass dieses Paket fehlerhaft ist und nicht gewartet wird (einige Fixes sind verfügbar aufgithub)
  • zum Beenden von Zeilen verwenden Sie\\
  • Die Funktion des \breakBefehls ist unklar. Bisher habe ich nicht gesehen, dass er bei der Formatierung von Zelleninhalten verwendet wurde.
  • schauen Sie, ob das folgende MWE das Richtige für Sie ist:
 \documentclass{book} 
 \usepackage{tabu} 

 \begin{document}
{
\fontsize{8bp}{10bp}\selectfont
\tabulinesep=3pt
\begin{tabu}{p{222pt}p{40pt}} 
    \tabucline{-} 
Total non-current liabilities   &   Employee benefits   \\
Total non-current liabilities   &   Employee benefits   \\ 
Total non-current liabilities   &   Employee benefits   \\ 
Total non-current liabilities   &   Employee benefits   \\
    \tabucline{-}
\end{tabu}
} 
\end{document}

Bildbeschreibung hier eingeben

Nachtrag: Wie ich bereits erwähnt habe, tabuist das fehlerhaft. Es ist jedoch nicht klar, was Ihr Problem ist, stattdessen tabuwürde ich lieber einfach verwenden tabular:

 \documentclass{book}
 \usepackage{tabu}

 \begin{document} 
{
\fontsize{8bp}{10bp}\selectfont
\begin{tabular}{p{222pt}p{40pt}} 
    \hline
Total non-current liabilities   &   Employee benefits   \\
Total non-current liabilities   &   Employee benefits   \\ 
Total non-current liabilities   &   Employee benefits   \\ 
Total non-current liabilities   &   Employee benefits   \\
    \hline
\end{tabular}
} 
\end{document}

Das Ergebnis ist:

Bildbeschreibung hier eingeben

verwandte Informationen