Keep lowercase in biblatex
I have a little issue, my bibliography (using Biblatex, biber) is written in upper case
while I did note specified anything (I think), and I'm not
happy with this.
Here is a little example :
documentclass[a4paper,10pt,twoside]{article}
usepackage[english,french]{babel}
usepackage{filecontents}
usepackage[
backend=biber,
style=chem-angew,
doi = false,
url = false,
sorting = none,
]{biblatex}
setlengthbibitemsep{0.8itemsep}
renewcommand*{bibfont}{small}
begin{filecontents}{sample.bib}
@article{myArticle,
author={Author},
title={Title},
journal={Journal},
year={2000},
volume={1}}
end{filecontents}
addbibresource{sample.bib}
begin{document}
begin{refsection}
Let's cite this : cite{myArticle}.
printbibliography
end{refsection}
end{document}
And I obtain "AUTHOR" with the A bigger than the other letters, but still everything in capitalized letters.
I saw people have similar issue, but usually this is the opposite.
biblatex biber french
add a comment |
I have a little issue, my bibliography (using Biblatex, biber) is written in upper case
while I did note specified anything (I think), and I'm not
happy with this.
Here is a little example :
documentclass[a4paper,10pt,twoside]{article}
usepackage[english,french]{babel}
usepackage{filecontents}
usepackage[
backend=biber,
style=chem-angew,
doi = false,
url = false,
sorting = none,
]{biblatex}
setlengthbibitemsep{0.8itemsep}
renewcommand*{bibfont}{small}
begin{filecontents}{sample.bib}
@article{myArticle,
author={Author},
title={Title},
journal={Journal},
year={2000},
volume={1}}
end{filecontents}
addbibresource{sample.bib}
begin{document}
begin{refsection}
Let's cite this : cite{myArticle}.
printbibliography
end{refsection}
end{document}
And I obtain "AUTHOR" with the A bigger than the other letters, but still everything in capitalized letters.
I saw people have similar issue, but usually this is the opposite.
biblatex biber french
add a comment |
I have a little issue, my bibliography (using Biblatex, biber) is written in upper case
while I did note specified anything (I think), and I'm not
happy with this.
Here is a little example :
documentclass[a4paper,10pt,twoside]{article}
usepackage[english,french]{babel}
usepackage{filecontents}
usepackage[
backend=biber,
style=chem-angew,
doi = false,
url = false,
sorting = none,
]{biblatex}
setlengthbibitemsep{0.8itemsep}
renewcommand*{bibfont}{small}
begin{filecontents}{sample.bib}
@article{myArticle,
author={Author},
title={Title},
journal={Journal},
year={2000},
volume={1}}
end{filecontents}
addbibresource{sample.bib}
begin{document}
begin{refsection}
Let's cite this : cite{myArticle}.
printbibliography
end{refsection}
end{document}
And I obtain "AUTHOR" with the A bigger than the other letters, but still everything in capitalized letters.
I saw people have similar issue, but usually this is the opposite.
biblatex biber french
I have a little issue, my bibliography (using Biblatex, biber) is written in upper case
while I did note specified anything (I think), and I'm not
happy with this.
Here is a little example :
documentclass[a4paper,10pt,twoside]{article}
usepackage[english,french]{babel}
usepackage{filecontents}
usepackage[
backend=biber,
style=chem-angew,
doi = false,
url = false,
sorting = none,
]{biblatex}
setlengthbibitemsep{0.8itemsep}
renewcommand*{bibfont}{small}
begin{filecontents}{sample.bib}
@article{myArticle,
author={Author},
title={Title},
journal={Journal},
year={2000},
volume={1}}
end{filecontents}
addbibresource{sample.bib}
begin{document}
begin{refsection}
Let's cite this : cite{myArticle}.
printbibliography
end{refsection}
end{document}
And I obtain "AUTHOR" with the A bigger than the other letters, but still everything in capitalized letters.
I saw people have similar issue, but usually this is the opposite.
biblatex biber french
biblatex biber french
edited Feb 19 at 13:25
moewe
92k10115348
92k10115348
asked Jun 28 '18 at 18:10
B_runoB_runo
554
554
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Family names in small caps are a default of the French localisation module. You can turn that behaviour off with
DefineBibliographyExtras{french}{restorecommandmkbibnamefamily}
The DefineBibliographyExtras{french} is necessary to make sure to overwrite the settings of the localisation module, which would otherwise take precedence over the settings in the preamble.
With the restored mkbibnamefamily it is also possible to change the definition of mkbibnamefamily in the preamble directly.
add a comment |
This seems to mean the author name is typeset in small caps. This is the default if the main language is French.
If you really don't want it, you may add these lines to your preamble:
AtBeginDocument{protecteddefmkbibnamefamily#1{%
textnohyphenation{#1}}}%

This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
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%2f438423%2fkeep-lowercase-in-biblatex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Family names in small caps are a default of the French localisation module. You can turn that behaviour off with
DefineBibliographyExtras{french}{restorecommandmkbibnamefamily}
The DefineBibliographyExtras{french} is necessary to make sure to overwrite the settings of the localisation module, which would otherwise take precedence over the settings in the preamble.
With the restored mkbibnamefamily it is also possible to change the definition of mkbibnamefamily in the preamble directly.
add a comment |
Family names in small caps are a default of the French localisation module. You can turn that behaviour off with
DefineBibliographyExtras{french}{restorecommandmkbibnamefamily}
The DefineBibliographyExtras{french} is necessary to make sure to overwrite the settings of the localisation module, which would otherwise take precedence over the settings in the preamble.
With the restored mkbibnamefamily it is also possible to change the definition of mkbibnamefamily in the preamble directly.
add a comment |
Family names in small caps are a default of the French localisation module. You can turn that behaviour off with
DefineBibliographyExtras{french}{restorecommandmkbibnamefamily}
The DefineBibliographyExtras{french} is necessary to make sure to overwrite the settings of the localisation module, which would otherwise take precedence over the settings in the preamble.
With the restored mkbibnamefamily it is also possible to change the definition of mkbibnamefamily in the preamble directly.
Family names in small caps are a default of the French localisation module. You can turn that behaviour off with
DefineBibliographyExtras{french}{restorecommandmkbibnamefamily}
The DefineBibliographyExtras{french} is necessary to make sure to overwrite the settings of the localisation module, which would otherwise take precedence over the settings in the preamble.
With the restored mkbibnamefamily it is also possible to change the definition of mkbibnamefamily in the preamble directly.
edited Feb 19 at 13:24
answered Jun 28 '18 at 18:42
moewemoewe
92k10115348
92k10115348
add a comment |
add a comment |
This seems to mean the author name is typeset in small caps. This is the default if the main language is French.
If you really don't want it, you may add these lines to your preamble:
AtBeginDocument{protecteddefmkbibnamefamily#1{%
textnohyphenation{#1}}}%

This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
add a comment |
This seems to mean the author name is typeset in small caps. This is the default if the main language is French.
If you really don't want it, you may add these lines to your preamble:
AtBeginDocument{protecteddefmkbibnamefamily#1{%
textnohyphenation{#1}}}%

This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
add a comment |
This seems to mean the author name is typeset in small caps. This is the default if the main language is French.
If you really don't want it, you may add these lines to your preamble:
AtBeginDocument{protecteddefmkbibnamefamily#1{%
textnohyphenation{#1}}}%

This seems to mean the author name is typeset in small caps. This is the default if the main language is French.
If you really don't want it, you may add these lines to your preamble:
AtBeginDocument{protecteddefmkbibnamefamily#1{%
textnohyphenation{#1}}}%

answered Jun 28 '18 at 18:35
BernardBernard
171k775202
171k775202
This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
add a comment |
This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
This command also works, although I accepted the one from moewe.
– B_runo
Jun 29 '18 at 5:47
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%2f438423%2fkeep-lowercase-in-biblatex%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