Cite vs. cite
In LaTeX both the cite
and Cite
commands work and for me (using biblatex
) and produce the same output.
What is the difference between the capitalized and non-capitalized version of cite
, citauthor
et.al.?
biblatex bibliographies
add a comment |
In LaTeX both the cite
and Cite
commands work and for me (using biblatex
) and produce the same output.
What is the difference between the capitalized and non-capitalized version of cite
, citauthor
et.al.?
biblatex bibliographies
9
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. Forciteauthor
its the same
– samcarter
Jan 28 at 13:46
6
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles wherecite
produces "ibid." andCite
"Ibid." and names with a prefix anduseprefix=true
wherecite
produces "van Gennep" andCite
"Van Gennep" (vangennep
inbiblatex-examples.bib
).)
– moewe
Jan 28 at 13:54
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06
add a comment |
In LaTeX both the cite
and Cite
commands work and for me (using biblatex
) and produce the same output.
What is the difference between the capitalized and non-capitalized version of cite
, citauthor
et.al.?
biblatex bibliographies
In LaTeX both the cite
and Cite
commands work and for me (using biblatex
) and produce the same output.
What is the difference between the capitalized and non-capitalized version of cite
, citauthor
et.al.?
biblatex bibliographies
biblatex bibliographies
asked Jan 28 at 13:44
HorusHorus
1973
1973
9
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. Forciteauthor
its the same
– samcarter
Jan 28 at 13:46
6
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles wherecite
produces "ibid." andCite
"Ibid." and names with a prefix anduseprefix=true
wherecite
produces "van Gennep" andCite
"Van Gennep" (vangennep
inbiblatex-examples.bib
).)
– moewe
Jan 28 at 13:54
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06
add a comment |
9
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. Forciteauthor
its the same
– samcarter
Jan 28 at 13:46
6
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles wherecite
produces "ibid." andCite
"Ibid." and names with a prefix anduseprefix=true
wherecite
produces "van Gennep" andCite
"Van Gennep" (vangennep
inbiblatex-examples.bib
).)
– moewe
Jan 28 at 13:54
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06
9
9
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. For
citeauthor
its the same– samcarter
Jan 28 at 13:46
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. For
citeauthor
its the same– samcarter
Jan 28 at 13:46
6
6
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles where
cite
produces "ibid." and Cite
"Ibid." and names with a prefix and useprefix=true
where cite
produces "van Gennep" and Cite
"Van Gennep" (vangennep
in biblatex-examples.bib
).)– moewe
Jan 28 at 13:54
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles where
cite
produces "ibid." and Cite
"Ibid." and names with a prefix and useprefix=true
where cite
produces "van Gennep" and Cite
"Van Gennep" (vangennep
in biblatex-examples.bib
).)– moewe
Jan 28 at 13:54
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06
add a comment |
1 Answer
1
active
oldest
votes
The difference between cite
and Cite
is the capitalization.
Cite
should make sure that the citation starts with an uppercase letter and is thus appropriate for the beginning of a sentence. Note that biblatex
can only capitalise those contents of cite
/Cite
that it has control over and that biblatex
is fairly conservative in its application of capitalisation macros. That means that in practice only bibstrings and name prefixes ('von', 'van', ... etc.) are capitalised automatically.
Most of the time you won't see a difference because names are normally already capitalised, but if your name has a prefix, like 'van' in the example below, you'll see the difference.
documentclass{article}
usepackage[style=authoryear]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
Cite{vangennep}
end{document}
Another case where this becomes relevant are styles that replace consecutive citations of the same work with 'ibid':
documentclass{article}
usepackage[style=authoryear-ibid]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
cite{vangennep}
Cite{vangennep}
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%2f472224%2fcite-vs-cite%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
The difference between cite
and Cite
is the capitalization.
Cite
should make sure that the citation starts with an uppercase letter and is thus appropriate for the beginning of a sentence. Note that biblatex
can only capitalise those contents of cite
/Cite
that it has control over and that biblatex
is fairly conservative in its application of capitalisation macros. That means that in practice only bibstrings and name prefixes ('von', 'van', ... etc.) are capitalised automatically.
Most of the time you won't see a difference because names are normally already capitalised, but if your name has a prefix, like 'van' in the example below, you'll see the difference.
documentclass{article}
usepackage[style=authoryear]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
Cite{vangennep}
end{document}
Another case where this becomes relevant are styles that replace consecutive citations of the same work with 'ibid':
documentclass{article}
usepackage[style=authoryear-ibid]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
cite{vangennep}
Cite{vangennep}
end{document}
add a comment |
The difference between cite
and Cite
is the capitalization.
Cite
should make sure that the citation starts with an uppercase letter and is thus appropriate for the beginning of a sentence. Note that biblatex
can only capitalise those contents of cite
/Cite
that it has control over and that biblatex
is fairly conservative in its application of capitalisation macros. That means that in practice only bibstrings and name prefixes ('von', 'van', ... etc.) are capitalised automatically.
Most of the time you won't see a difference because names are normally already capitalised, but if your name has a prefix, like 'van' in the example below, you'll see the difference.
documentclass{article}
usepackage[style=authoryear]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
Cite{vangennep}
end{document}
Another case where this becomes relevant are styles that replace consecutive citations of the same work with 'ibid':
documentclass{article}
usepackage[style=authoryear-ibid]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
cite{vangennep}
Cite{vangennep}
end{document}
add a comment |
The difference between cite
and Cite
is the capitalization.
Cite
should make sure that the citation starts with an uppercase letter and is thus appropriate for the beginning of a sentence. Note that biblatex
can only capitalise those contents of cite
/Cite
that it has control over and that biblatex
is fairly conservative in its application of capitalisation macros. That means that in practice only bibstrings and name prefixes ('von', 'van', ... etc.) are capitalised automatically.
Most of the time you won't see a difference because names are normally already capitalised, but if your name has a prefix, like 'van' in the example below, you'll see the difference.
documentclass{article}
usepackage[style=authoryear]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
Cite{vangennep}
end{document}
Another case where this becomes relevant are styles that replace consecutive citations of the same work with 'ibid':
documentclass{article}
usepackage[style=authoryear-ibid]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
cite{vangennep}
Cite{vangennep}
end{document}
The difference between cite
and Cite
is the capitalization.
Cite
should make sure that the citation starts with an uppercase letter and is thus appropriate for the beginning of a sentence. Note that biblatex
can only capitalise those contents of cite
/Cite
that it has control over and that biblatex
is fairly conservative in its application of capitalisation macros. That means that in practice only bibstrings and name prefixes ('von', 'van', ... etc.) are capitalised automatically.
Most of the time you won't see a difference because names are normally already capitalised, but if your name has a prefix, like 'van' in the example below, you'll see the difference.
documentclass{article}
usepackage[style=authoryear]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
Cite{vangennep}
end{document}
Another case where this becomes relevant are styles that replace consecutive citations of the same work with 'ibid':
documentclass{article}
usepackage[style=authoryear-ibid]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
cite{vangennep}
cite{vangennep}
Cite{vangennep}
end{document}
edited Jan 28 at 20:44
community wiki
3 revs, 2 users 85%
samcarter
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%2f472224%2fcite-vs-cite%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
9
"Cite is similar to cite but capitalizes the name prefix of the first name in the citation if the useprefix option is enabled, provided that there is a name prefix and the citation style prints any name at all." Quote from the biblatex documentation. For
citeauthor
its the same– samcarter
Jan 28 at 13:46
6
@kurt There is no need for a MWE for this question. And samcarter's comment could be simply turned into an answer.
– Alan Munn
Jan 28 at 13:50
@samcarter Please turn that comment into an answer, maybe with an example that shows the difference (e.g. "ibid" styles where
cite
produces "ibid." andCite
"Ibid." and names with a prefix anduseprefix=true
wherecite
produces "van Gennep" andCite
"Van Gennep" (vangennep
inbiblatex-examples.bib
).)– moewe
Jan 28 at 13:54
@moewe Done! Thanks a lot for all the examples you suggested!
– samcarter
Jan 28 at 14:06