プロパティのリストを作成するために、私は以下の例を使用しています。役職。
\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}