How can I Show label of equations only in one chapter of my thesis
For some equations I need to visible their label, for example:
/begin{equation}
/label{eq:C3}
x+y=3
/end{equation}
I also used the package showlables
.
In this case for each equation I received one number and one label
this happens for all equations from the first page to the last page like that:
$x+y=3 $ $ (1.1) (eq:C3)$
But I need the label $(eq:C3)$
just for the equations which are in my last chapter.
Do you have any suggestion?
chapters
|
show 6 more comments
For some equations I need to visible their label, for example:
/begin{equation}
/label{eq:C3}
x+y=3
/end{equation}
I also used the package showlables
.
In this case for each equation I received one number and one label
this happens for all equations from the first page to the last page like that:
$x+y=3 $ $ (1.1) (eq:C3)$
But I need the label $(eq:C3)$
just for the equations which are in my last chapter.
Do you have any suggestion?
chapters
1
presumably you usedbegin
not/begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?
– David Carlisle
Feb 10 at 23:08
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
1
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
1
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
1
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18
|
show 6 more comments
For some equations I need to visible their label, for example:
/begin{equation}
/label{eq:C3}
x+y=3
/end{equation}
I also used the package showlables
.
In this case for each equation I received one number and one label
this happens for all equations from the first page to the last page like that:
$x+y=3 $ $ (1.1) (eq:C3)$
But I need the label $(eq:C3)$
just for the equations which are in my last chapter.
Do you have any suggestion?
chapters
For some equations I need to visible their label, for example:
/begin{equation}
/label{eq:C3}
x+y=3
/end{equation}
I also used the package showlables
.
In this case for each equation I received one number and one label
this happens for all equations from the first page to the last page like that:
$x+y=3 $ $ (1.1) (eq:C3)$
But I need the label $(eq:C3)$
just for the equations which are in my last chapter.
Do you have any suggestion?
chapters
chapters
edited Feb 11 at 11:16
Angela
asked Feb 10 at 22:42
AngelaAngela
32
32
1
presumably you usedbegin
not/begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?
– David Carlisle
Feb 10 at 23:08
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
1
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
1
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
1
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18
|
show 6 more comments
1
presumably you usedbegin
not/begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?
– David Carlisle
Feb 10 at 23:08
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
1
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
1
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
1
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18
1
1
presumably you used
begin
not /begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?– David Carlisle
Feb 10 at 23:08
presumably you used
begin
not /begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?– David Carlisle
Feb 10 at 23:08
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
1
1
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
1
1
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
1
1
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18
|
show 6 more comments
1 Answer
1
active
oldest
votes
If I understand you correctly you want to be able to turn on and off the printing of the labels by the showlabels
package. The code below shows how you can define two macros ShowLabels
and HideLabels
that will do just that.
documentclass{article}
usepackage{showlabels}
letOriginalLabelFormatshowlabelsetlabel
newcommandShowLabels{letshowlabelsetlabelOriginalLabelFormat}
newcommandHideLabels{renewcommandshowlabelsetlabel[1]{}}
begin{document}
begin{equation}
a=a label{a}
end{equation}
HideLabels % turns off showing of labels for the following equations
begin{equation}
a=b label{b}
end{equation}
ShowLabels % turn on labels again
begin{equation}
a=c label{c}
end{equation}
end{document}
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f474251%2fhow-can-i-show-label-of-equations-only-in-one-chapter-of-my-thesis%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If I understand you correctly you want to be able to turn on and off the printing of the labels by the showlabels
package. The code below shows how you can define two macros ShowLabels
and HideLabels
that will do just that.
documentclass{article}
usepackage{showlabels}
letOriginalLabelFormatshowlabelsetlabel
newcommandShowLabels{letshowlabelsetlabelOriginalLabelFormat}
newcommandHideLabels{renewcommandshowlabelsetlabel[1]{}}
begin{document}
begin{equation}
a=a label{a}
end{equation}
HideLabels % turns off showing of labels for the following equations
begin{equation}
a=b label{b}
end{equation}
ShowLabels % turn on labels again
begin{equation}
a=c label{c}
end{equation}
end{document}
add a comment |
If I understand you correctly you want to be able to turn on and off the printing of the labels by the showlabels
package. The code below shows how you can define two macros ShowLabels
and HideLabels
that will do just that.
documentclass{article}
usepackage{showlabels}
letOriginalLabelFormatshowlabelsetlabel
newcommandShowLabels{letshowlabelsetlabelOriginalLabelFormat}
newcommandHideLabels{renewcommandshowlabelsetlabel[1]{}}
begin{document}
begin{equation}
a=a label{a}
end{equation}
HideLabels % turns off showing of labels for the following equations
begin{equation}
a=b label{b}
end{equation}
ShowLabels % turn on labels again
begin{equation}
a=c label{c}
end{equation}
end{document}
add a comment |
If I understand you correctly you want to be able to turn on and off the printing of the labels by the showlabels
package. The code below shows how you can define two macros ShowLabels
and HideLabels
that will do just that.
documentclass{article}
usepackage{showlabels}
letOriginalLabelFormatshowlabelsetlabel
newcommandShowLabels{letshowlabelsetlabelOriginalLabelFormat}
newcommandHideLabels{renewcommandshowlabelsetlabel[1]{}}
begin{document}
begin{equation}
a=a label{a}
end{equation}
HideLabels % turns off showing of labels for the following equations
begin{equation}
a=b label{b}
end{equation}
ShowLabels % turn on labels again
begin{equation}
a=c label{c}
end{equation}
end{document}
If I understand you correctly you want to be able to turn on and off the printing of the labels by the showlabels
package. The code below shows how you can define two macros ShowLabels
and HideLabels
that will do just that.
documentclass{article}
usepackage{showlabels}
letOriginalLabelFormatshowlabelsetlabel
newcommandShowLabels{letshowlabelsetlabelOriginalLabelFormat}
newcommandHideLabels{renewcommandshowlabelsetlabel[1]{}}
begin{document}
begin{equation}
a=a label{a}
end{equation}
HideLabels % turns off showing of labels for the following equations
begin{equation}
a=b label{b}
end{equation}
ShowLabels % turn on labels again
begin{equation}
a=c label{c}
end{equation}
end{document}
answered 7 hours ago
Torbjørn T.Torbjørn T.
157k13252442
157k13252442
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f474251%2fhow-can-i-show-label-of-equations-only-in-one-chapter-of-my-thesis%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
1
presumably you used
begin
not/begin
showlabels
is just for debugging so why does it matter if it applies to the whole document?– David Carlisle
Feb 10 at 23:08
@DavidCarlisle the package which I used before /begin{document} is /usepakage{showlables}, So what do you mean by /begin{showlables} ?
– Angela
Feb 11 at 9:47
1
the image that you post to seems completely unrelated to teh question, did you intend to post a different image?
– David Carlisle
Feb 11 at 11:13
1
@DavidCarlisle I didn't post this image. I don't know how it came here, !!!!
– Angela
Feb 11 at 11:17
1
The question is very confusing in its current state. Can you explain your problem in more detail?
– Johannes_B
Feb 11 at 11:18