为了创建属性列表,我使用了以下示例邮政。
\begin{Properties}
\item First
\item Second
\end{Properties}
结果:
我想将“属性 1”“属性 2”文本设为粗体。该怎么做?
答案1
欢迎使用 TeX.SE。您可以使用font=\textbf
。根据enumitem
文档:
font=<commands>
format=<commands>
\item
设置标签字体。当使用 中的可选参数 和 更改标签时很有用description
。 中的最后一个命令<commands>
可以接受带有项目标签的参数。 在 中description
,类设置有效,因此您可能希望以 开头\normalfont
。 同义词是format
。实际上,此键可用于在\item
标签前的每个 处执行任何内容。
\documentclass{article}
\usepackage{enumitem}
% From <https://tex.stackexchange.com/a/37741/73317> (Torbjørn T.)
\newlist{Properties}{enumerate}{2}
\setlist[Properties]{label=Property \arabic*., font=\textbf, itemindent=*}
\begin{document}
\begin{Properties}
\item First
\item Second
\end{Properties}
\end{document}