為了創建屬性列表,我使用了以下範例郵政。
\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}