\makecell - 自动换行后留有空格

\makecell - 自动换行后留有空格

我使用表格“longtblr”,并且在里面使用“\makecell[{{p{5cm}}}]{abcd}”。

我想在“默认定义)”之前添加 shift/space,就像在“选项 2”中一样。

我拥有什么以及我想要什么

先感谢您。

答案1

使用\makecell后直接使用它01 -

\documentclass{article}

\usepackage{makecell}

\begin{document}

\begin{tabular}{l}
  Option 2:          \\
  00 -- first option \\
  01 -- \makecell[t{{p{4cm}}}]{second option (this option is defined by default)}
\end{tabular}

\end{document}

使用 makecell 编码

但也许最好使用两列并将其设置--为列分隔符@{...}

\documentclass{article}

\begin{document}

\begin{tabular}{l @{~--~} p{4cm}}
  \multicolumn{2}{l}{Option 2:}          \\
  00 & first option \\
  01 & second option (this option is defined by default)
\end{tabular}

\end{document}

在此处输入图片描述

相关内容