先頭のスペースがタブー パッケージの使用に影響しています。設定テンプレートの更新が必要ですか? MEW ファイルは以下のとおりです。
\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}
答え1
- 使用方法
tabu
:このパッケージにはバグがあり、メンテナンスされていないことに注意してください(いくつかの修正はギットハブ) - 行の終了には、
\\
- コマンドの機能は
\break
不明ですが、これまでのところ、セルの内容の書式設定で使用されているのを確認していません。 - 次の MWE があなたが求めているものを提供しているかどうか確認してください。
\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}
補遺:
AI が述べたように、 にはtabu
バグがあります。 何が問題なのかは明確ではありませんが、代わりにtabu
単純な を使用します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}
これにより、次のようになります。