Appendix without sections ? The Next CEO of Stack Overflowmaking appendix for thesisAppendix in thesisAdjusting Single Appendix titleAppendix numbering (Alph.arabic) in LatexSections of Appendix are also visible on the “Content” pageName of appendixAppendix in Latex.Appendix without letter in TOCChanging “Chapter A” to “Appendix A” in TOC - Existing solutions don't workwhat's the best way to do my appendix?
The exact meaning of 'Mom made me a sandwich'
How to avoid supervisors with prejudiced views?
How to sed chunks text from a stream of files from find
Powershell. How to parse gci Name?
Why does standard notation not preserve intervals (visually)
What is the value of α and β in a triangle?
Flying from Cape Town to England and return to another province
Recycling old answers
Chain wire methods together in Lightning Web Components
How to count occurrences of text in a file?
Won the lottery - how do I keep the money?
Is it professional to write unrelated content in an almost-empty email?
Is it okay to majorly distort historical facts while writing a fiction story?
WOW air has ceased operation, can I get my tickets refunded?
Is French Guiana a (hard) EU border?
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
How many extra stops do monopods offer for tele photographs?
No sign flipping while figuring out the emf of voltaic cell?
Is there always a complete, orthogonal set of unitary matrices?
Do I need to write [sic] when a number is less than 10 but isn't written out?
is it ok to reduce charging current for li ion 18650 battery?
Easy to read palindrome checker
Can we say or write : "No, it'sn't"?
INSERT to a table from a database to other (same SQL Server) using Dynamic SQL
Appendix without sections ?
The Next CEO of Stack Overflowmaking appendix for thesisAppendix in thesisAdjusting Single Appendix titleAppendix numbering (Alph.arabic) in LatexSections of Appendix are also visible on the “Content” pageName of appendixAppendix in Latex.Appendix without letter in TOCChanging “Chapter A” to “Appendix A” in TOC - Existing solutions don't workwhat's the best way to do my appendix?
There is only one appendix chapter in my thesis, which Latex defaults as Appendix A. However, I need it to show up as only "Appendix" without A or 1. Can anyone please tell me how to achieve that.
Thank you so much.
sectioning numbering appendices
add a comment |
There is only one appendix chapter in my thesis, which Latex defaults as Appendix A. However, I need it to show up as only "Appendix" without A or 1. Can anyone please tell me how to achieve that.
Thank you so much.
sectioning numbering appendices
add a comment |
There is only one appendix chapter in my thesis, which Latex defaults as Appendix A. However, I need it to show up as only "Appendix" without A or 1. Can anyone please tell me how to achieve that.
Thank you so much.
sectioning numbering appendices
There is only one appendix chapter in my thesis, which Latex defaults as Appendix A. However, I need it to show up as only "Appendix" without A or 1. Can anyone please tell me how to achieve that.
Thank you so much.
sectioning numbering appendices
sectioning numbering appendices
edited Jun 22 '11 at 6:07
lockstep
192k53593723
192k53593723
asked Jun 22 '11 at 1:17
John_thesisJohn_thesis
51113
51113
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.
documentclassarticle
usepackagelipsum
begindocument
tableofcontents
sectionFirst
lipsum[1]
sectionSecond
lipsum[2]
appendix
setcountersecnumdepth0
sectionAppendix
enddocument

5
Orsetcountersecnumdepth-1ifbookorreportare used.
– Gonzalo Medina
Jun 22 '11 at 1:41
add a comment |
If you want to suppress the numbering only for the appendix, but keep the numbering for other sectional units (i.e. sections, subsections inside the appendix), then you can redefine the commands thechapter and thesection just before the appendix:
documentclassbook
begindocument
chapterA regular chapter
appendix
renewcommandthechapter
renewcommandthesectionarabicsection
chapterOnly Appendix
sectionTest section in Appendix
enddocument
add a comment |
Just using chapter* (or section*) for the appendix title should do the trick.
add a comment |
I went into the class file to do this. Essentially, there's something that looks like so:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter@Alphc@chapter
I changed it to this:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter
This removes the letter but there's a white space in the ToC after APPENDIX. Win-some-lose-some. Hopefully someone get's a nicer solution someday.
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%2f21317%2fappendix-without-sections%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.
documentclassarticle
usepackagelipsum
begindocument
tableofcontents
sectionFirst
lipsum[1]
sectionSecond
lipsum[2]
appendix
setcountersecnumdepth0
sectionAppendix
enddocument

5
Orsetcountersecnumdepth-1ifbookorreportare used.
– Gonzalo Medina
Jun 22 '11 at 1:41
add a comment |
You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.
documentclassarticle
usepackagelipsum
begindocument
tableofcontents
sectionFirst
lipsum[1]
sectionSecond
lipsum[2]
appendix
setcountersecnumdepth0
sectionAppendix
enddocument

5
Orsetcountersecnumdepth-1ifbookorreportare used.
– Gonzalo Medina
Jun 22 '11 at 1:41
add a comment |
You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.
documentclassarticle
usepackagelipsum
begindocument
tableofcontents
sectionFirst
lipsum[1]
sectionSecond
lipsum[2]
appendix
setcountersecnumdepth0
sectionAppendix
enddocument

You can change the secnumdepth to 0 in the appendix. This means that section numbering is switched off for all levels (parts, chapters, sections) after the command.
documentclassarticle
usepackagelipsum
begindocument
tableofcontents
sectionFirst
lipsum[1]
sectionSecond
lipsum[2]
appendix
setcountersecnumdepth0
sectionAppendix
enddocument

answered Jun 22 '11 at 1:37
JakeJake
195k24658763
195k24658763
5
Orsetcountersecnumdepth-1ifbookorreportare used.
– Gonzalo Medina
Jun 22 '11 at 1:41
add a comment |
5
Orsetcountersecnumdepth-1ifbookorreportare used.
– Gonzalo Medina
Jun 22 '11 at 1:41
5
5
Or
setcountersecnumdepth-1 if book or report are used.– Gonzalo Medina
Jun 22 '11 at 1:41
Or
setcountersecnumdepth-1 if book or report are used.– Gonzalo Medina
Jun 22 '11 at 1:41
add a comment |
If you want to suppress the numbering only for the appendix, but keep the numbering for other sectional units (i.e. sections, subsections inside the appendix), then you can redefine the commands thechapter and thesection just before the appendix:
documentclassbook
begindocument
chapterA regular chapter
appendix
renewcommandthechapter
renewcommandthesectionarabicsection
chapterOnly Appendix
sectionTest section in Appendix
enddocument
add a comment |
If you want to suppress the numbering only for the appendix, but keep the numbering for other sectional units (i.e. sections, subsections inside the appendix), then you can redefine the commands thechapter and thesection just before the appendix:
documentclassbook
begindocument
chapterA regular chapter
appendix
renewcommandthechapter
renewcommandthesectionarabicsection
chapterOnly Appendix
sectionTest section in Appendix
enddocument
add a comment |
If you want to suppress the numbering only for the appendix, but keep the numbering for other sectional units (i.e. sections, subsections inside the appendix), then you can redefine the commands thechapter and thesection just before the appendix:
documentclassbook
begindocument
chapterA regular chapter
appendix
renewcommandthechapter
renewcommandthesectionarabicsection
chapterOnly Appendix
sectionTest section in Appendix
enddocument
If you want to suppress the numbering only for the appendix, but keep the numbering for other sectional units (i.e. sections, subsections inside the appendix), then you can redefine the commands thechapter and thesection just before the appendix:
documentclassbook
begindocument
chapterA regular chapter
appendix
renewcommandthechapter
renewcommandthesectionarabicsection
chapterOnly Appendix
sectionTest section in Appendix
enddocument
edited 7 hours ago
Earthliŋ
665624
665624
answered Jun 22 '11 at 1:44
Gonzalo MedinaGonzalo Medina
402k4113151580
402k4113151580
add a comment |
add a comment |
Just using chapter* (or section*) for the appendix title should do the trick.
add a comment |
Just using chapter* (or section*) for the appendix title should do the trick.
add a comment |
Just using chapter* (or section*) for the appendix title should do the trick.
Just using chapter* (or section*) for the appendix title should do the trick.
answered Jan 17 '13 at 22:36
vonbrandvonbrand
3,58411231
3,58411231
add a comment |
add a comment |
I went into the class file to do this. Essentially, there's something that looks like so:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter@Alphc@chapter
I changed it to this:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter
This removes the letter but there's a white space in the ToC after APPENDIX. Win-some-lose-some. Hopefully someone get's a nicer solution someday.
add a comment |
I went into the class file to do this. Essentially, there's something that looks like so:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter@Alphc@chapter
I changed it to this:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter
This removes the letter but there's a white space in the ToC after APPENDIX. Win-some-lose-some. Hopefully someone get's a nicer solution someday.
add a comment |
I went into the class file to do this. Essentially, there's something that looks like so:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter@Alphc@chapter
I changed it to this:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter
This removes the letter but there's a white space in the ToC after APPENDIX. Win-some-lose-some. Hopefully someone get's a nicer solution someday.
I went into the class file to do this. Essentially, there's something that looks like so:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter@Alphc@chapter
I changed it to this:
renewcommandappendixparUTD@appendixtrue
setcounterchapter0%
setcountersection0%
gdef@chapappappendixname%
gdefthechapter
This removes the letter but there's a white space in the ToC after APPENDIX. Win-some-lose-some. Hopefully someone get's a nicer solution someday.
edited Apr 2 '14 at 17:51
egreg
730k8819283242
730k8819283242
answered Apr 2 '14 at 17:44
Hasan PoonawalaHasan Poonawala
1
1
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%2f21317%2fappendix-without-sections%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