Number of figure and description, between them “-”
up vote
0
down vote
favorite
I have the following problem, I have a figure with its number and description like this:
but I wish to delete the after the "2":
In order to have a thing like this:
Figure3.2 - Simple tables part one
I use this code:
begin{figure}[H]
centering
includegraphics[scale=0.75 ]{./imageName.png}
caption{Simple table part 2}
label{fig:exp:Lc3f3}
end{figure}
Have you some idea in order to replace this point with "-" in such away to separate them?
captions
New contributor
add a comment |
up vote
0
down vote
favorite
I have the following problem, I have a figure with its number and description like this:
but I wish to delete the after the "2":
In order to have a thing like this:
Figure3.2 - Simple tables part one
I use this code:
begin{figure}[H]
centering
includegraphics[scale=0.75 ]{./imageName.png}
caption{Simple table part 2}
label{fig:exp:Lc3f3}
end{figure}
Have you some idea in order to replace this point with "-" in such away to separate them?
captions
New contributor
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in thelabelsep
option of thecaption
package.
– leandriis
Nov 14 at 18:42
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have the following problem, I have a figure with its number and description like this:
but I wish to delete the after the "2":
In order to have a thing like this:
Figure3.2 - Simple tables part one
I use this code:
begin{figure}[H]
centering
includegraphics[scale=0.75 ]{./imageName.png}
caption{Simple table part 2}
label{fig:exp:Lc3f3}
end{figure}
Have you some idea in order to replace this point with "-" in such away to separate them?
captions
New contributor
I have the following problem, I have a figure with its number and description like this:
but I wish to delete the after the "2":
In order to have a thing like this:
Figure3.2 - Simple tables part one
I use this code:
begin{figure}[H]
centering
includegraphics[scale=0.75 ]{./imageName.png}
caption{Simple table part 2}
label{fig:exp:Lc3f3}
end{figure}
Have you some idea in order to replace this point with "-" in such away to separate them?
captions
captions
New contributor
New contributor
edited Nov 14 at 18:55
Phelype Oleinik
20.4k54277
20.4k54277
New contributor
asked Nov 14 at 18:11
Doe
31
31
New contributor
New contributor
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in thelabelsep
option of thecaption
package.
– leandriis
Nov 14 at 18:42
add a comment |
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in thelabelsep
option of thecaption
package.
– leandriis
Nov 14 at 18:42
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in the
labelsep
option of the caption
package.– leandriis
Nov 14 at 18:42
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in the
labelsep
option of the caption
package.– leandriis
Nov 14 at 18:42
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
The caption
helps for that:
documentclass{book}
usepackage{graphicx}
usepackage{float, caption}
captionsetup[figure]{labelsep=endash}
begin{document}
setcounter{chapter}{3}
begin{figure}[H]
centering
includegraphics[scale=0.5 ]{traccia-table}
caption{Simple table part 1}
label{fig:exp:Lc3f3}
end{figure}
end{document}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
The caption
helps for that:
documentclass{book}
usepackage{graphicx}
usepackage{float, caption}
captionsetup[figure]{labelsep=endash}
begin{document}
setcounter{chapter}{3}
begin{figure}[H]
centering
includegraphics[scale=0.5 ]{traccia-table}
caption{Simple table part 1}
label{fig:exp:Lc3f3}
end{figure}
end{document}
add a comment |
up vote
2
down vote
accepted
The caption
helps for that:
documentclass{book}
usepackage{graphicx}
usepackage{float, caption}
captionsetup[figure]{labelsep=endash}
begin{document}
setcounter{chapter}{3}
begin{figure}[H]
centering
includegraphics[scale=0.5 ]{traccia-table}
caption{Simple table part 1}
label{fig:exp:Lc3f3}
end{figure}
end{document}
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
The caption
helps for that:
documentclass{book}
usepackage{graphicx}
usepackage{float, caption}
captionsetup[figure]{labelsep=endash}
begin{document}
setcounter{chapter}{3}
begin{figure}[H]
centering
includegraphics[scale=0.5 ]{traccia-table}
caption{Simple table part 1}
label{fig:exp:Lc3f3}
end{figure}
end{document}
The caption
helps for that:
documentclass{book}
usepackage{graphicx}
usepackage{float, caption}
captionsetup[figure]{labelsep=endash}
begin{document}
setcounter{chapter}{3}
begin{figure}[H]
centering
includegraphics[scale=0.5 ]{traccia-table}
caption{Simple table part 1}
label{fig:exp:Lc3f3}
end{figure}
end{document}
answered Nov 14 at 18:56
Bernard
162k767192
162k767192
add a comment |
add a comment |
Doe is a new contributor. Be nice, and check out our Code of Conduct.
Doe is a new contributor. Be nice, and check out our Code of Conduct.
Doe is a new contributor. Be nice, and check out our Code of Conduct.
Doe is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f459992%2fnumber-of-figure-and-description-between-them%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Could you please turn your code fragment into a compilable minimal working example (MWE) by adding the documentclass and the relevant packages? In order to obtain the desired result, you might be interested in the
labelsep
option of thecaption
package.– leandriis
Nov 14 at 18:42