parbox 会忽略行首的缩进和空格

parbox 会忽略行首的缩进和空格

当在 内时\parbox,缩进和空格(如\indent\quad\hspace{}等...)在开始一行时会被忽略。例如,此代码:

\parbox[t]{10cm}{
    \indent indent does not work \\
    hi \hspace{2em} this hspace works \\
    \hspace{2em} this hspace does not work \\
    \quad quad doesnt work but \quad this one does
}

生成:

缩进和间距被吃掉

是否有一个设置可以让前导缩进/间隔符在 parbox 内部工作?

相关内容