Objective:
- Change font style, in this case removing bold;
- Customize the text into
Page <$my_text>.; and - Do this for a single description environment, I don't want to change the other ones.
To remove the bold I use font=\normalfont which seems to work. However, I cannot change the text format into Page <$my_text>.. What am I doing wrong?
\documentclass{report}
\usepackage{enumitem}
\begin{document}
\begin{description}[leftmargin=!, labelwidth=0.3\textwidth, font=\normalfont, label=Page~*.]
\item[12] Hello.
\item[33] Text text text text text text text text.
\item[92] Some more text here.
\end{description}
\end{document}
Page 12.orPage 33.(without bold text). – user3371321 Apr 01 '14 at 16:02