How can I remove the initial letter in the Appendix heading? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)ref not working with achemsoCleveref can't refer to line numbers in listingsHow to make ref references include the word 'Figure'?Why doesn't cleveref's namecref work?How do I reference in appendix a theorem given in the body?How to reference an unnumbered section by writing a number?How to reference a figure placed in the appendixReferencing a non-figure in AppendixMemoir: treating a section as an appendixConvert final appendix to a supplementary material section
SF book about people trapped in a series of worlds they imagine
How can I reduce the gap between left and right of cdot with a macro?
What would you call this weird metallic apparatus that allows you to lift people?
What is the appropriate index architecture when forced to implement IsDeleted (soft deletes)?
Combinatorics problem on counting.
Why aren't air breathing engines used as small first stages?
Find 108 by using 3,4,6
Localisation of Category
Hangman Game with C++
AppleTVs create a chatty alternate WiFi network
What is the font for "b" letter?
Why should I vote and accept answers?
How often does castling occur in grandmaster games?
How were pictures turned from film to a big picture in a picture frame before digital scanning?
Did Deadpool rescue all of the X-Force?
Significance of Cersei's obsession with elephants?
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
Do wooden building fires get hotter than 600°C?
What initially awakened the Balrog?
Illegal assignment from sObject to Id
Can the Great Weapon Master feat's "Power Attack" apply to attacks from the Spiritual Weapon spell?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
Take 2! Is this homebrew Lady of Pain warlock patron balanced?
Performance gap between vector<bool> and array
How can I remove the initial letter in the Appendix heading?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)ref not working with achemsoCleveref can't refer to line numbers in listingsHow to make ref references include the word 'Figure'?Why doesn't cleveref's namecref work?How do I reference in appendix a theorem given in the body?How to reference an unnumbered section by writing a number?How to reference a figure placed in the appendixReferencing a non-figure in AppendixMemoir: treating a section as an appendixConvert final appendix to a supplementary material section
I am writing a paper for school in which I need to include appendices. Currently, I am using the appendix
command at the end of the document (just before enddocument
) to insert these appendices. When creating a new appendix, I used the section
command, and it's working just fine, and it does what I want. Except, there is one problem. The heading shows in the following way:
A Appendix A
I am trying to get rid of the first A in the heading. These are the packages and commands I am using in my document.
documentclassarticle
usepackagehyperref
usepackage[nameinlink, noabbrev]cleveref
usepackagexcolor
hypersetup
colorlinks,
linkcolor=red!100!black
begindocument
We can see in Crefapp:A the original text in blah, blah, blah.
Crefapp:B depicts a table with the results from this study.
Finally, Crefapp:C shows a plot of these results...
appendix
sectionAppendix Alabelapp:A
Text here...
sectionAppendix Blabelapp:B
Table here...
sectionAppendix Clabelapp:C
Figure here...
enddocument
And here is the output:
I know that if I use the command section*Appendix A
as opposed to sectionAppendix A
then the first letter goes away. The problem with that solution is that I can't use the cleveref to cross-reference this item in the body of my text. And if I do reference it using Crefapp:A
, it simply links to the previous section that was not starred. In my case, the hyperlink is connected to my conclusion and not my appendices. I need to be able to reference the appendices in my text, and I need to get rid of the first letter because it violates APA formatting rules, which is the formatting used in my field.
I hope someone can help me with this. Also, I'm new to LaTeX, so I'd prefer simple solutions (such as a renew
command) that won't require that I change my entire document because my paper is basically done. Thank you in advance!
cross-referencing cleveref appendix
add a comment |
I am writing a paper for school in which I need to include appendices. Currently, I am using the appendix
command at the end of the document (just before enddocument
) to insert these appendices. When creating a new appendix, I used the section
command, and it's working just fine, and it does what I want. Except, there is one problem. The heading shows in the following way:
A Appendix A
I am trying to get rid of the first A in the heading. These are the packages and commands I am using in my document.
documentclassarticle
usepackagehyperref
usepackage[nameinlink, noabbrev]cleveref
usepackagexcolor
hypersetup
colorlinks,
linkcolor=red!100!black
begindocument
We can see in Crefapp:A the original text in blah, blah, blah.
Crefapp:B depicts a table with the results from this study.
Finally, Crefapp:C shows a plot of these results...
appendix
sectionAppendix Alabelapp:A
Text here...
sectionAppendix Blabelapp:B
Table here...
sectionAppendix Clabelapp:C
Figure here...
enddocument
And here is the output:
I know that if I use the command section*Appendix A
as opposed to sectionAppendix A
then the first letter goes away. The problem with that solution is that I can't use the cleveref to cross-reference this item in the body of my text. And if I do reference it using Crefapp:A
, it simply links to the previous section that was not starred. In my case, the hyperlink is connected to my conclusion and not my appendices. I need to be able to reference the appendices in my text, and I need to get rid of the first letter because it violates APA formatting rules, which is the formatting used in my field.
I hope someone can help me with this. Also, I'm new to LaTeX, so I'd prefer simple solutions (such as a renew
command) that won't require that I change my entire document because my paper is basically done. Thank you in advance!
cross-referencing cleveref appendix
add a comment |
I am writing a paper for school in which I need to include appendices. Currently, I am using the appendix
command at the end of the document (just before enddocument
) to insert these appendices. When creating a new appendix, I used the section
command, and it's working just fine, and it does what I want. Except, there is one problem. The heading shows in the following way:
A Appendix A
I am trying to get rid of the first A in the heading. These are the packages and commands I am using in my document.
documentclassarticle
usepackagehyperref
usepackage[nameinlink, noabbrev]cleveref
usepackagexcolor
hypersetup
colorlinks,
linkcolor=red!100!black
begindocument
We can see in Crefapp:A the original text in blah, blah, blah.
Crefapp:B depicts a table with the results from this study.
Finally, Crefapp:C shows a plot of these results...
appendix
sectionAppendix Alabelapp:A
Text here...
sectionAppendix Blabelapp:B
Table here...
sectionAppendix Clabelapp:C
Figure here...
enddocument
And here is the output:
I know that if I use the command section*Appendix A
as opposed to sectionAppendix A
then the first letter goes away. The problem with that solution is that I can't use the cleveref to cross-reference this item in the body of my text. And if I do reference it using Crefapp:A
, it simply links to the previous section that was not starred. In my case, the hyperlink is connected to my conclusion and not my appendices. I need to be able to reference the appendices in my text, and I need to get rid of the first letter because it violates APA formatting rules, which is the formatting used in my field.
I hope someone can help me with this. Also, I'm new to LaTeX, so I'd prefer simple solutions (such as a renew
command) that won't require that I change my entire document because my paper is basically done. Thank you in advance!
cross-referencing cleveref appendix
I am writing a paper for school in which I need to include appendices. Currently, I am using the appendix
command at the end of the document (just before enddocument
) to insert these appendices. When creating a new appendix, I used the section
command, and it's working just fine, and it does what I want. Except, there is one problem. The heading shows in the following way:
A Appendix A
I am trying to get rid of the first A in the heading. These are the packages and commands I am using in my document.
documentclassarticle
usepackagehyperref
usepackage[nameinlink, noabbrev]cleveref
usepackagexcolor
hypersetup
colorlinks,
linkcolor=red!100!black
begindocument
We can see in Crefapp:A the original text in blah, blah, blah.
Crefapp:B depicts a table with the results from this study.
Finally, Crefapp:C shows a plot of these results...
appendix
sectionAppendix Alabelapp:A
Text here...
sectionAppendix Blabelapp:B
Table here...
sectionAppendix Clabelapp:C
Figure here...
enddocument
And here is the output:
I know that if I use the command section*Appendix A
as opposed to sectionAppendix A
then the first letter goes away. The problem with that solution is that I can't use the cleveref to cross-reference this item in the body of my text. And if I do reference it using Crefapp:A
, it simply links to the previous section that was not starred. In my case, the hyperlink is connected to my conclusion and not my appendices. I need to be able to reference the appendices in my text, and I need to get rid of the first letter because it violates APA formatting rules, which is the formatting used in my field.
I hope someone can help me with this. Also, I'm new to LaTeX, so I'd prefer simple solutions (such as a renew
command) that won't require that I change my entire document because my paper is basically done. Thank you in advance!
cross-referencing cleveref appendix
cross-referencing cleveref appendix
asked 8 mins ago
ErnestoErnesto
538
538
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
);
);
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%2f485539%2fhow-can-i-remove-the-initial-letter-in-the-appendix-heading%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
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%2f485539%2fhow-can-i-remove-the-initial-letter-in-the-appendix-heading%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