如何将涂鸦中的文字左对齐?

如何将涂鸦中的文字左对齐?

我在论文中使用涂鸦作为旁注,有没有办法将所有文本左对齐?(目前,由于某种原因,页面左侧的评论与右侧对齐……)

乱画是其一部分经典论文定义作为:

\def\graffito@setup{%
   \slshape\footnotesize%
   \parindent=0pt \lineskip=0pt \lineskiplimit=0pt %
   \tolerance=2000 \hyphenpenalty=300 \exhyphenpenalty=300%
   \doublehyphendemerits=100000%
   \finalhyphendemerits=\doublehyphendemerits}

答案1

该行为在 classicthesis.sty 中定义。在大多数最新版本中,graffito 只是 marginpar 的别名。但如果您仍在专门使用 graffito,则应在 classicthesis-config.tex 加载为后重新定义它

\renewcommand{\graffito}[1]{\oldmarginpar%
 [\graffito@setup\raggedright\hspace{0pt}{#1}]%
 {\graffito@setup\raggedright\hspace{0pt}{#1}}}

相关内容