タブー リーディング スペース 影響

タブー リーディング スペース 影響

先頭のスペースがタブー パッケージの使用に影響しています。設定テンプレートの更新が必要ですか? 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}

これにより、次のようになります。

ここに画像の説明を入力してください

関連情報