描述项未加粗

描述项未加粗

\hfill \\正如标题所说,我的描述项不是粗体,如果可能的话,我希望将其设置为粗体并自动设置为粗体。使用:

\documentclass[paper=a4,bibliography=totoc,listof=totoc,toc=indent]{scrreprt}
\usepackage{uarial}
\begin{document}
\begin{description}
    \item[Some Item]\hfill \\ with some Text
\end{description}
\end{document}

结果是:

在此处输入图片描述


随着style=newline

在此处输入图片描述

答案1

uarial 并不是真正合适的无衬线字体。但如果你真的想要,你应该使用 T1 编码

\documentclass[paper=a4,bibliography=totoc,listof=totoc,toc=indent]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage{uarial}
\usepackage{enumitem}
\begin{document}
\begin{description}[style=nextline]
    \item[Some Item] with some Text
\end{description}
\end{document}

在此处输入图片描述

相关内容