Biblatex conflicts with Babel package for serbianc option
When compiling the following example code:
documentclass[a4paper]{article}
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
usepackage[serbianc]{babel}
usepackage[backend=biber]{biblatex}
addbibresource{lit.bib}
begin{document}
TEXT
end{document}
The following error is reported:! Package biblatex Error: Incompatible package 'ucs'.
The line:usepackage[serbianc]{babel}
seems to be the cause of the conflict as compiling without that specific line works perfectly.
I'm writing a paper in Serbian which will include a bibliography, can this issue be resolved while keeping both of the necessary packages included in the source.
biblatex biber babel
add a comment |
When compiling the following example code:
documentclass[a4paper]{article}
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
usepackage[serbianc]{babel}
usepackage[backend=biber]{biblatex}
addbibresource{lit.bib}
begin{document}
TEXT
end{document}
The following error is reported:! Package biblatex Error: Incompatible package 'ucs'.
The line:usepackage[serbianc]{babel}
seems to be the cause of the conflict as compiling without that specific line works perfectly.
I'm writing a paper in Serbian which will include a bibliography, can this issue be resolved while keeping both of the necessary packages included in the source.
biblatex biber babel
The example as posted compiles fine for me. What version ofbabel-serbianc
do you use? Addlistfiles
to the beginning of your document and compile it (withoutbiblatex
to avoid the error). I haveserbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
You are probably using an older version ofbabel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version2019/01/12 3.0
, it doesn't loaducs
any more.
– moewe
Feb 24 at 16:11
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12
add a comment |
When compiling the following example code:
documentclass[a4paper]{article}
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
usepackage[serbianc]{babel}
usepackage[backend=biber]{biblatex}
addbibresource{lit.bib}
begin{document}
TEXT
end{document}
The following error is reported:! Package biblatex Error: Incompatible package 'ucs'.
The line:usepackage[serbianc]{babel}
seems to be the cause of the conflict as compiling without that specific line works perfectly.
I'm writing a paper in Serbian which will include a bibliography, can this issue be resolved while keeping both of the necessary packages included in the source.
biblatex biber babel
When compiling the following example code:
documentclass[a4paper]{article}
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
usepackage[serbianc]{babel}
usepackage[backend=biber]{biblatex}
addbibresource{lit.bib}
begin{document}
TEXT
end{document}
The following error is reported:! Package biblatex Error: Incompatible package 'ucs'.
The line:usepackage[serbianc]{babel}
seems to be the cause of the conflict as compiling without that specific line works perfectly.
I'm writing a paper in Serbian which will include a bibliography, can this issue be resolved while keeping both of the necessary packages included in the source.
biblatex biber babel
biblatex biber babel
asked Feb 24 at 15:57
stayherestayhere
312
312
The example as posted compiles fine for me. What version ofbabel-serbianc
do you use? Addlistfiles
to the beginning of your document and compile it (withoutbiblatex
to avoid the error). I haveserbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
You are probably using an older version ofbabel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version2019/01/12 3.0
, it doesn't loaducs
any more.
– moewe
Feb 24 at 16:11
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12
add a comment |
The example as posted compiles fine for me. What version ofbabel-serbianc
do you use? Addlistfiles
to the beginning of your document and compile it (withoutbiblatex
to avoid the error). I haveserbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
You are probably using an older version ofbabel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version2019/01/12 3.0
, it doesn't loaducs
any more.
– moewe
Feb 24 at 16:11
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12
The example as posted compiles fine for me. What version of
babel-serbianc
do you use? Add listfiles
to the beginning of your document and compile it (without biblatex
to avoid the error). I have serbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
The example as posted compiles fine for me. What version of
babel-serbianc
do you use? Add listfiles
to the beginning of your document and compile it (without biblatex
to avoid the error). I have serbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
You are probably using an older version of
babel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version 2019/01/12 3.0
, it doesn't load ucs
any more.– moewe
Feb 24 at 16:11
You are probably using an older version of
babel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version 2019/01/12 3.0
, it doesn't load ucs
any more.– moewe
Feb 24 at 16:11
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12
add a comment |
1 Answer
1
active
oldest
votes
With the current version of babel-serbianc
(3.0 2019-01-12), the MWE compiles as desired. The package ucs
is not loaded. As https://tug.org/pipermail/tex-live-commits/2019-January/008417.html shows older versions of babel-serbianc
(at least 2011/06/06 v2.2
) did indeed load ucs
.
With a bit of trickery from Unload a LaTeX package I can get the example to compile even with the outdated version of babel-serbianc
, but you risk things going wrong further down the road. So my express advice is to use the new version of babel-serbianc
.
listfiles
documentclass[a4paper]{article}
usepackage{etoolbox}
makeatletter
newcommand{dontusepackage}[2]{%
csdef{ver@#2.sty}{9999/12/31}%
csdef{opt@#2.sty}{#1}}
newcommand{pretendpackagewasnotloaded}[1]{%
csundef{ver@#1.sty}%
csundef{opt@#1.sty}}
makeatother
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
dontusepackage{ucs}
usepackage[serbianc]{babel}
pretendpackagewasnotloaded{ucs}
usepackage[backend=biber]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
TEXT
end{document}
Note that biblatex
does not speak Serbian, so the bibliography and citations are going to be in English. See What is the most appropriate way to configure biblatex for use with an unsupported language?. If you are thinking about writing a Serbian localisation for biblatex
, please consider swinging by https://github.com/plk/biblatex/issues and sharing what you come up with.
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%2f476465%2fbiblatex-conflicts-with-babel-package-for-serbianc-option%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
With the current version of babel-serbianc
(3.0 2019-01-12), the MWE compiles as desired. The package ucs
is not loaded. As https://tug.org/pipermail/tex-live-commits/2019-January/008417.html shows older versions of babel-serbianc
(at least 2011/06/06 v2.2
) did indeed load ucs
.
With a bit of trickery from Unload a LaTeX package I can get the example to compile even with the outdated version of babel-serbianc
, but you risk things going wrong further down the road. So my express advice is to use the new version of babel-serbianc
.
listfiles
documentclass[a4paper]{article}
usepackage{etoolbox}
makeatletter
newcommand{dontusepackage}[2]{%
csdef{ver@#2.sty}{9999/12/31}%
csdef{opt@#2.sty}{#1}}
newcommand{pretendpackagewasnotloaded}[1]{%
csundef{ver@#1.sty}%
csundef{opt@#1.sty}}
makeatother
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
dontusepackage{ucs}
usepackage[serbianc]{babel}
pretendpackagewasnotloaded{ucs}
usepackage[backend=biber]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
TEXT
end{document}
Note that biblatex
does not speak Serbian, so the bibliography and citations are going to be in English. See What is the most appropriate way to configure biblatex for use with an unsupported language?. If you are thinking about writing a Serbian localisation for biblatex
, please consider swinging by https://github.com/plk/biblatex/issues and sharing what you come up with.
add a comment |
With the current version of babel-serbianc
(3.0 2019-01-12), the MWE compiles as desired. The package ucs
is not loaded. As https://tug.org/pipermail/tex-live-commits/2019-January/008417.html shows older versions of babel-serbianc
(at least 2011/06/06 v2.2
) did indeed load ucs
.
With a bit of trickery from Unload a LaTeX package I can get the example to compile even with the outdated version of babel-serbianc
, but you risk things going wrong further down the road. So my express advice is to use the new version of babel-serbianc
.
listfiles
documentclass[a4paper]{article}
usepackage{etoolbox}
makeatletter
newcommand{dontusepackage}[2]{%
csdef{ver@#2.sty}{9999/12/31}%
csdef{opt@#2.sty}{#1}}
newcommand{pretendpackagewasnotloaded}[1]{%
csundef{ver@#1.sty}%
csundef{opt@#1.sty}}
makeatother
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
dontusepackage{ucs}
usepackage[serbianc]{babel}
pretendpackagewasnotloaded{ucs}
usepackage[backend=biber]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
TEXT
end{document}
Note that biblatex
does not speak Serbian, so the bibliography and citations are going to be in English. See What is the most appropriate way to configure biblatex for use with an unsupported language?. If you are thinking about writing a Serbian localisation for biblatex
, please consider swinging by https://github.com/plk/biblatex/issues and sharing what you come up with.
add a comment |
With the current version of babel-serbianc
(3.0 2019-01-12), the MWE compiles as desired. The package ucs
is not loaded. As https://tug.org/pipermail/tex-live-commits/2019-January/008417.html shows older versions of babel-serbianc
(at least 2011/06/06 v2.2
) did indeed load ucs
.
With a bit of trickery from Unload a LaTeX package I can get the example to compile even with the outdated version of babel-serbianc
, but you risk things going wrong further down the road. So my express advice is to use the new version of babel-serbianc
.
listfiles
documentclass[a4paper]{article}
usepackage{etoolbox}
makeatletter
newcommand{dontusepackage}[2]{%
csdef{ver@#2.sty}{9999/12/31}%
csdef{opt@#2.sty}{#1}}
newcommand{pretendpackagewasnotloaded}[1]{%
csundef{ver@#1.sty}%
csundef{opt@#1.sty}}
makeatother
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
dontusepackage{ucs}
usepackage[serbianc]{babel}
pretendpackagewasnotloaded{ucs}
usepackage[backend=biber]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
TEXT
end{document}
Note that biblatex
does not speak Serbian, so the bibliography and citations are going to be in English. See What is the most appropriate way to configure biblatex for use with an unsupported language?. If you are thinking about writing a Serbian localisation for biblatex
, please consider swinging by https://github.com/plk/biblatex/issues and sharing what you come up with.
With the current version of babel-serbianc
(3.0 2019-01-12), the MWE compiles as desired. The package ucs
is not loaded. As https://tug.org/pipermail/tex-live-commits/2019-January/008417.html shows older versions of babel-serbianc
(at least 2011/06/06 v2.2
) did indeed load ucs
.
With a bit of trickery from Unload a LaTeX package I can get the example to compile even with the outdated version of babel-serbianc
, but you risk things going wrong further down the road. So my express advice is to use the new version of babel-serbianc
.
listfiles
documentclass[a4paper]{article}
usepackage{etoolbox}
makeatletter
newcommand{dontusepackage}[2]{%
csdef{ver@#2.sty}{9999/12/31}%
csdef{opt@#2.sty}{#1}}
newcommand{pretendpackagewasnotloaded}[1]{%
csundef{ver@#1.sty}%
csundef{opt@#1.sty}}
makeatother
usepackage[T2A]{fontenc}
usepackage[utf8]{inputenc}
dontusepackage{ucs}
usepackage[serbianc]{babel}
pretendpackagewasnotloaded{ucs}
usepackage[backend=biber]{biblatex}
addbibresource{biblatex-examples.bib}
begin{document}
TEXT
end{document}
Note that biblatex
does not speak Serbian, so the bibliography and citations are going to be in English. See What is the most appropriate way to configure biblatex for use with an unsupported language?. If you are thinking about writing a Serbian localisation for biblatex
, please consider swinging by https://github.com/plk/biblatex/issues and sharing what you come up with.
edited Feb 24 at 16:28
answered Feb 24 at 16:19
moewemoewe
92.4k10115350
92.4k10115350
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%2f476465%2fbiblatex-conflicts-with-babel-package-for-serbianc-option%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
The example as posted compiles fine for me. What version of
babel-serbianc
do you use? Addlistfiles
to the beginning of your document and compile it (withoutbiblatex
to avoid the error). I haveserbianc.ldf 2019/01/12 3.0
– moewe
Feb 24 at 16:03
You are probably using an older version of
babel-serbianc
(2011/06/06 v2.2
or older), if possible update to the new version2019/01/12 3.0
, it doesn't loaducs
any more.– moewe
Feb 24 at 16:11
@moewe you're right I'm using version 2.2, thank you, I'll try to update it then
– stayhere
Feb 24 at 16:12