How to renew \caption command to make all title in bold?
I do this:
\usepackage[labelfont=bf,labelsep=space]{caption}
and I get
Figure 1 caption
I need
Figure 1 caption
My try
\renewcommand{\caption}[1]{\caption{\textbf{#1}}}
doesn't work.
|
As egreg pointed out in his comment, since you are already loading the
Another (but not so economic) option would have been to load
|
||||
|
|
|
Perhaps less flexible, you can modify
|
|||
|
|
font=bfto the options. Or, better, changelabelfonttofont– egreg May 19 '12 at 18:06captionpackage does offer a documentation. – Axel Sommerfeldt May 20 '12 at 6:51