How can I remove the initial letter in the Appendix heading? Announcing the arrival of Valued...
Chinese Seal on silk painting - what does it mean?
Did Deadpool rescue all of the X-Force?
Did Krishna say in Bhagavad Gita "I am in every living being"
Should I follow up with an employee I believe overracted to a mistake I made?
What initially awakened the Balrog?
What is the difference between globalisation and imperialism?
Question about debouncing - delay of state change
Why aren't air breathing engines used as small first stages?
ArcGIS Pro Python arcpy.CreatePersonalGDB_management
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
Is it possible for SQL statements to execute concurrently within a single session in SQL Server?
How do I use the new nonlinear finite element in Mathematica 12 for this equation?
What's the meaning of "fortified infraction restraint"?
As a beginner, should I get a Squier Strat with a SSS config or a HSS?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
How could we fake a moon landing now?
Why should I vote and accept answers?
Can an alien society believe that their star system is the universe?
How to write the following sign?
Should I use a zero-interest credit card for a large one-time purchase?
Trademark violation for app?
A term for a woman complaining about things/begging in a cute/childish way
Find 108 by using 3,4,6
Why is my ESD wriststrap failing with nitrile gloves on?
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)
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 end{document}) 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.
documentclass{article}
usepackage{hyperref}
usepackage[nameinlink, noabbrev]{cleveref}
usepackage{xcolor}
hypersetup{
colorlinks,
linkcolor={red!100!black}
}
begin{document}
We can see in Cref{app:A} the original text in blah, blah, blah.
Cref{app:B} depicts a table with the results from this study.
Finally, Cref{app:C} shows a plot of these results...
appendix
section{Appendix A}label{app:A}
Text here...
section{Appendix B}label{app:B}
Table here...
section{Appendix C}label{app:C}
Figure here...
end{document}
And here is the output:

I know that if I use the command section*{Appendix A} as opposed to section{Appendix 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 Cref{app: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 end{document}) 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.
documentclass{article}
usepackage{hyperref}
usepackage[nameinlink, noabbrev]{cleveref}
usepackage{xcolor}
hypersetup{
colorlinks,
linkcolor={red!100!black}
}
begin{document}
We can see in Cref{app:A} the original text in blah, blah, blah.
Cref{app:B} depicts a table with the results from this study.
Finally, Cref{app:C} shows a plot of these results...
appendix
section{Appendix A}label{app:A}
Text here...
section{Appendix B}label{app:B}
Table here...
section{Appendix C}label{app:C}
Figure here...
end{document}
And here is the output:

I know that if I use the command section*{Appendix A} as opposed to section{Appendix 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 Cref{app: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 end{document}) 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.
documentclass{article}
usepackage{hyperref}
usepackage[nameinlink, noabbrev]{cleveref}
usepackage{xcolor}
hypersetup{
colorlinks,
linkcolor={red!100!black}
}
begin{document}
We can see in Cref{app:A} the original text in blah, blah, blah.
Cref{app:B} depicts a table with the results from this study.
Finally, Cref{app:C} shows a plot of these results...
appendix
section{Appendix A}label{app:A}
Text here...
section{Appendix B}label{app:B}
Table here...
section{Appendix C}label{app:C}
Figure here...
end{document}
And here is the output:

I know that if I use the command section*{Appendix A} as opposed to section{Appendix 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 Cref{app: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 end{document}) 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.
documentclass{article}
usepackage{hyperref}
usepackage[nameinlink, noabbrev]{cleveref}
usepackage{xcolor}
hypersetup{
colorlinks,
linkcolor={red!100!black}
}
begin{document}
We can see in Cref{app:A} the original text in blah, blah, blah.
Cref{app:B} depicts a table with the results from this study.
Finally, Cref{app:C} shows a plot of these results...
appendix
section{Appendix A}label{app:A}
Text here...
section{Appendix B}label{app:B}
Table here...
section{Appendix C}label{app:C}
Figure here...
end{document}
And here is the output:

I know that if I use the command section*{Appendix A} as opposed to section{Appendix 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 Cref{app: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 44 secs 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