My enumeration should contain four key words:
- Aggregate Power
- Proximate Power
- Offensive Power
- Offensive Intentions
I want to enumerate them and take these four key words as the enumeration label. At the same time I would like to set them as \textbf{}.
My attempts were working around the below example:
\begin{enumerate}[Label=\textbf{\item[]}]
\item[Aggregate Power]
\item[Proximate Power]
...
\end{enumerate}
I would like to avoid writing \textbf{} in every label.
How can I set an item format for the customized but changing labels?
enumerateif you aren't planning to enumerate them?descriptionmight be more apt here.. – Troy Jan 13 '19 at 15:48\usepackage{enumitem}and\begin{description}[format={\bfseries}] \item[Foo] \item[foobar]\end{description}– Jan 13 '19 at 16:14