Graphics, Figures & Tables ⇒ \captionlabeldelim does not work
-
- Posts: 32
- Joined: Sun Mar 01, 2009 8:29 am
\captionlabeldelim does not work
The \captionlabeldelim is a macro in the package caption2. however, this package does not work in my MikTex2.5 with the error \@makecaption undefined. When I check the doc, it says the caption2 is obsolete and should be changed to caption. However, \captionlabeldelim is not in the caption package. Any alternative macro can we use to change the captionlabeldelim? Thank you.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
\captionlabeldelim does not work
You should clarify what this \captionlabeldelim is (command, length) and what it does. Seems to me that this may be the separator between label and caption text. In this context you could describe what you want to do. So we may be able to find an alternative solution. Moreover it is recommendable to upgrade your LaTeX system to MiKTeX 2.7 because package repositories have been closed for 2.5 a long time ago.
Best regards
Thorsten¹
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 32
- Joined: Sun Mar 01, 2009 8:29 am
Re: \captionlabeldelim does not work
Just as you think, the \captionlabeldelim is to change the seperator of the label and the caption, usually it is : or . However, I do not want any separator. Thank you.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
\captionlabeldelim does not work
With the current version of caption this is done very easy.neumannturing wrote:[…] However, I do not want any separator. […]
Code: Select all
\usepackage[font=small,labelfont=bf,labelsep=none]{caption}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 32
- Joined: Sun Mar 01, 2009 8:29 am
Re: \captionlabeldelim does not work
This will affect the whole document. What should I do if I just want to change the delimiter for one figure?
\captionlabeldelim does not work
Just put \captionsetup{labelsep=space} inside that figure, right before the \caption command.neumannturing wrote:This will affect the whole document. What should I do if I just want to change the delimiter for one figure?