Want to define numbered Theorem, Lemma, Remark, etc
How could indestructible materials be used in power generation?
What is the idiomatic way to say "clothing fits"?
How to show a landlord what we have in savings?
Would Slavery Reparations be considered Bills of Attainder and hence Illegal?
One verb to replace 'be a member of' a club
I would say: "You are another teacher", but she is a woman and I am a man
How badly should I try to prevent a user from XSSing themselves?
Is there a hemisphere-neutral way of specifying a season?
In 'Revenger,' what does 'cove' come from?
pgfplots: How to draw exponential graph with 60° start angle?
Unlock My Phone! February 2018
Why was the shrinking from 8″ made only to 5.25″ and not smaller (4″ or less)?
How to prevent "they're falling in love" trope
How can saying a song's name be a copyright violation?
Forgetting the musical notes while performing in concert
Assassin's bullet with mercury
Detention in 1997
Can we compute the area of a quadrilateral with one right angle when we only know the lengths of any three sides?
How to compactly explain secondary and tertiary characters without resorting to stereotypes?
What mechanic is there to disable a threat instead of killing it?
How seriously should I take size and weight limits of hand luggage?
Can a virus destroy the BIOS of a modern computer?
What killed these X2 caps?
Which is the best way to check return result?
Want to define numbered Theorem, Lemma, Remark, etc
I have seen some nice functionality in the the latex files of certain math journals and I want to create that functionality in my own .tex file. Right now, I can write
beginequationlabeleq:STUFF
MATH STUFF
endequation
and this will produce a numbered equation. Elsewhere, I can refer to "Equation refeq:STUFF," and it will take care of the numbering for me. Here is the new functionality I am looking for: I want to be able to write
begintheoremlabelthm:LATEX
For example, this theorem is Theorem 2.5.1 because it is the first theorem in the fifth subsection of the second section.
endtheorem
I want to be able to write "Theorem refthm:LATEX" and have my PDF build with the numbers for the theorem's number in this format: [Section].[Subsection].[Item], in this case "2.5.1."
I also want to be able to toggle the numbering for unnumbered items such as a simple remark, or
beginproof
Proof of the above numbered theorem.
endproof
where I would refer to this as "proof of Theorem refthm:LATEX" and I would not want the item counter to count the proof, so that the item following the proof would be item "2.5.2"
BELOW FIND MY TEX FILE WITH THE NOTES ON WHAT I WANT:
documentclassreport
usepackage[utf8]inputenc
usepackagegraphicx % needed for figures
usepackagebm % for math
usepackageamssymb % for math
usepackageamsmath
usepackagegraphicx
usepackagetitling
usepackagebigints
usepackagemathtools
usepackagecenternot
usepackage[left=1in,right=1in,top=0.468in,bottom=.768in,centering,includeheadfoot]geometry
titleLARGE textbfProof of Latex
authorLargeHodor P. Bojangleton
begindocument
renewcommandabstractnamevspace-baselineskip
datetoday
maketitle
tableofcontents
newpage
large
sectionSECTION 1
Currently this starts with 0 because it is counting the chapters, but I only want to use sections and subsections. I need to get rid of the counting for chapters.
Items in this space should be numbered 1.0.X
Here I create and equation with the "begin/end" syntax that I want for my new commands.
beginequationlabeleq:111
1+1=2
endequation
I want to add a zero for the subsection in the numbering of Equation refeq:111.
subsectionSUBSECTION 1.1
Here we have the 0 chapter number than I want to get rid of.
Items in this space should be numbered 1.1.X
I want the item name and number to appear aesthetically like:newline
noindent Large textbfTheorem 1.1.1 After I write "begin theorem" to mimic the "begin equation" functionality that I already have, I want the text I write between "begin" and "end" to show up on the same line as the large bold theorem header.newline
noindent Large textitProof. This is an unnumbered proof of the above theorem.newline
noindent Large textbfLemma 1.1.2 The item counter did not increment for the proof.
sectionSECTION 2
Items in this space should be numbered 2.0.X
subsectionSUBSECTION 2.1
Items in this space should be numbered 2.1.X
subsectionSUBSECTION 2.2
Items in this space should be numbered 2.2.X
enddocument
numbering
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I have seen some nice functionality in the the latex files of certain math journals and I want to create that functionality in my own .tex file. Right now, I can write
beginequationlabeleq:STUFF
MATH STUFF
endequation
and this will produce a numbered equation. Elsewhere, I can refer to "Equation refeq:STUFF," and it will take care of the numbering for me. Here is the new functionality I am looking for: I want to be able to write
begintheoremlabelthm:LATEX
For example, this theorem is Theorem 2.5.1 because it is the first theorem in the fifth subsection of the second section.
endtheorem
I want to be able to write "Theorem refthm:LATEX" and have my PDF build with the numbers for the theorem's number in this format: [Section].[Subsection].[Item], in this case "2.5.1."
I also want to be able to toggle the numbering for unnumbered items such as a simple remark, or
beginproof
Proof of the above numbered theorem.
endproof
where I would refer to this as "proof of Theorem refthm:LATEX" and I would not want the item counter to count the proof, so that the item following the proof would be item "2.5.2"
BELOW FIND MY TEX FILE WITH THE NOTES ON WHAT I WANT:
documentclassreport
usepackage[utf8]inputenc
usepackagegraphicx % needed for figures
usepackagebm % for math
usepackageamssymb % for math
usepackageamsmath
usepackagegraphicx
usepackagetitling
usepackagebigints
usepackagemathtools
usepackagecenternot
usepackage[left=1in,right=1in,top=0.468in,bottom=.768in,centering,includeheadfoot]geometry
titleLARGE textbfProof of Latex
authorLargeHodor P. Bojangleton
begindocument
renewcommandabstractnamevspace-baselineskip
datetoday
maketitle
tableofcontents
newpage
large
sectionSECTION 1
Currently this starts with 0 because it is counting the chapters, but I only want to use sections and subsections. I need to get rid of the counting for chapters.
Items in this space should be numbered 1.0.X
Here I create and equation with the "begin/end" syntax that I want for my new commands.
beginequationlabeleq:111
1+1=2
endequation
I want to add a zero for the subsection in the numbering of Equation refeq:111.
subsectionSUBSECTION 1.1
Here we have the 0 chapter number than I want to get rid of.
Items in this space should be numbered 1.1.X
I want the item name and number to appear aesthetically like:newline
noindent Large textbfTheorem 1.1.1 After I write "begin theorem" to mimic the "begin equation" functionality that I already have, I want the text I write between "begin" and "end" to show up on the same line as the large bold theorem header.newline
noindent Large textitProof. This is an unnumbered proof of the above theorem.newline
noindent Large textbfLemma 1.1.2 The item counter did not increment for the proof.
sectionSECTION 2
Items in this space should be numbered 2.0.X
subsectionSUBSECTION 2.1
Items in this space should be numbered 2.1.X
subsectionSUBSECTION 2.2
Items in this space should be numbered 2.2.X
enddocument
numbering
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I have seen some nice functionality in the the latex files of certain math journals and I want to create that functionality in my own .tex file. Right now, I can write
beginequationlabeleq:STUFF
MATH STUFF
endequation
and this will produce a numbered equation. Elsewhere, I can refer to "Equation refeq:STUFF," and it will take care of the numbering for me. Here is the new functionality I am looking for: I want to be able to write
begintheoremlabelthm:LATEX
For example, this theorem is Theorem 2.5.1 because it is the first theorem in the fifth subsection of the second section.
endtheorem
I want to be able to write "Theorem refthm:LATEX" and have my PDF build with the numbers for the theorem's number in this format: [Section].[Subsection].[Item], in this case "2.5.1."
I also want to be able to toggle the numbering for unnumbered items such as a simple remark, or
beginproof
Proof of the above numbered theorem.
endproof
where I would refer to this as "proof of Theorem refthm:LATEX" and I would not want the item counter to count the proof, so that the item following the proof would be item "2.5.2"
BELOW FIND MY TEX FILE WITH THE NOTES ON WHAT I WANT:
documentclassreport
usepackage[utf8]inputenc
usepackagegraphicx % needed for figures
usepackagebm % for math
usepackageamssymb % for math
usepackageamsmath
usepackagegraphicx
usepackagetitling
usepackagebigints
usepackagemathtools
usepackagecenternot
usepackage[left=1in,right=1in,top=0.468in,bottom=.768in,centering,includeheadfoot]geometry
titleLARGE textbfProof of Latex
authorLargeHodor P. Bojangleton
begindocument
renewcommandabstractnamevspace-baselineskip
datetoday
maketitle
tableofcontents
newpage
large
sectionSECTION 1
Currently this starts with 0 because it is counting the chapters, but I only want to use sections and subsections. I need to get rid of the counting for chapters.
Items in this space should be numbered 1.0.X
Here I create and equation with the "begin/end" syntax that I want for my new commands.
beginequationlabeleq:111
1+1=2
endequation
I want to add a zero for the subsection in the numbering of Equation refeq:111.
subsectionSUBSECTION 1.1
Here we have the 0 chapter number than I want to get rid of.
Items in this space should be numbered 1.1.X
I want the item name and number to appear aesthetically like:newline
noindent Large textbfTheorem 1.1.1 After I write "begin theorem" to mimic the "begin equation" functionality that I already have, I want the text I write between "begin" and "end" to show up on the same line as the large bold theorem header.newline
noindent Large textitProof. This is an unnumbered proof of the above theorem.newline
noindent Large textbfLemma 1.1.2 The item counter did not increment for the proof.
sectionSECTION 2
Items in this space should be numbered 2.0.X
subsectionSUBSECTION 2.1
Items in this space should be numbered 2.1.X
subsectionSUBSECTION 2.2
Items in this space should be numbered 2.2.X
enddocument
numbering
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I have seen some nice functionality in the the latex files of certain math journals and I want to create that functionality in my own .tex file. Right now, I can write
beginequationlabeleq:STUFF
MATH STUFF
endequation
and this will produce a numbered equation. Elsewhere, I can refer to "Equation refeq:STUFF," and it will take care of the numbering for me. Here is the new functionality I am looking for: I want to be able to write
begintheoremlabelthm:LATEX
For example, this theorem is Theorem 2.5.1 because it is the first theorem in the fifth subsection of the second section.
endtheorem
I want to be able to write "Theorem refthm:LATEX" and have my PDF build with the numbers for the theorem's number in this format: [Section].[Subsection].[Item], in this case "2.5.1."
I also want to be able to toggle the numbering for unnumbered items such as a simple remark, or
beginproof
Proof of the above numbered theorem.
endproof
where I would refer to this as "proof of Theorem refthm:LATEX" and I would not want the item counter to count the proof, so that the item following the proof would be item "2.5.2"
BELOW FIND MY TEX FILE WITH THE NOTES ON WHAT I WANT:
documentclassreport
usepackage[utf8]inputenc
usepackagegraphicx % needed for figures
usepackagebm % for math
usepackageamssymb % for math
usepackageamsmath
usepackagegraphicx
usepackagetitling
usepackagebigints
usepackagemathtools
usepackagecenternot
usepackage[left=1in,right=1in,top=0.468in,bottom=.768in,centering,includeheadfoot]geometry
titleLARGE textbfProof of Latex
authorLargeHodor P. Bojangleton
begindocument
renewcommandabstractnamevspace-baselineskip
datetoday
maketitle
tableofcontents
newpage
large
sectionSECTION 1
Currently this starts with 0 because it is counting the chapters, but I only want to use sections and subsections. I need to get rid of the counting for chapters.
Items in this space should be numbered 1.0.X
Here I create and equation with the "begin/end" syntax that I want for my new commands.
beginequationlabeleq:111
1+1=2
endequation
I want to add a zero for the subsection in the numbering of Equation refeq:111.
subsectionSUBSECTION 1.1
Here we have the 0 chapter number than I want to get rid of.
Items in this space should be numbered 1.1.X
I want the item name and number to appear aesthetically like:newline
noindent Large textbfTheorem 1.1.1 After I write "begin theorem" to mimic the "begin equation" functionality that I already have, I want the text I write between "begin" and "end" to show up on the same line as the large bold theorem header.newline
noindent Large textitProof. This is an unnumbered proof of the above theorem.newline
noindent Large textbfLemma 1.1.2 The item counter did not increment for the proof.
sectionSECTION 2
Items in this space should be numbered 2.0.X
subsectionSUBSECTION 2.1
Items in this space should be numbered 2.1.X
subsectionSUBSECTION 2.2
Items in this space should be numbered 2.2.X
enddocument
numbering
numbering
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 3 mins ago
Jonathan TookerJonathan Tooker
1
1
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Jonathan Tooker is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
0
active
oldest
votes
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
);
);
Jonathan Tooker 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%2f483053%2fwant-to-define-numbered-theorem-lemma-remark-etc%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Jonathan Tooker is a new contributor. Be nice, and check out our Code of Conduct.
Jonathan Tooker is a new contributor. Be nice, and check out our Code of Conduct.
Jonathan Tooker is a new contributor. Be nice, and check out our Code of Conduct.
Jonathan Tooker is a new contributor. Be nice, and check out our Code of Conduct.
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%2f483053%2fwant-to-define-numbered-theorem-lemma-remark-etc%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