parbox 中的破折号边界不正确?

parbox 中的破折号边界不正确?

如果我在中创建一个 parbox moderncv,则破折号会出现,例如:

\documentclass[11pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}                
\firstname{Foo}
\familyname{\textsc{Bar}}
\begin{document}
\setlength{\fboxsep}{0pt}%
\fbox{\parbox[t]{\linewidth}{
    -- ooo\\
    \fbox{--} ooo\\
    -- Bar
  }}
\end{document}

生成:

在此处输入图片描述

这里出了什么问题?我的目标是将其插入到 a 中,\cvline{foo}{bar}因为\cvline{foo}{bar\\baz}会产生错误。

相关内容