금기 선행 공백 영향

금기 선행 공백 영향

tabu 패키지 사용에 영향을 미치는 주요 공간, 설정된 템플릿 업데이트가 필요합니까? 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

  • using 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버그가 있습니다. 문제가 무엇인지는 확실하지 않지만 대신 tabusimple을 사용하고 싶습니다 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}

이는 다음을 제공합니다:

여기에 이미지 설명을 입력하세요

관련 정보