Avoid fontspec warning with babel
I have this example
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
Compiled with lualatex
I obtain this warning
Package fontspec Warning: Language 'English' not available for font
'Amiri'
What I have done wrong? or what I have missed?
beamer fontspec babel warnings
add a comment |
I have this example
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
Compiled with lualatex
I obtain this warning
Package fontspec Warning: Language 'English' not available for font
'Amiri'
What I have done wrong? or what I have missed?
beamer fontspec babel warnings
Why this warning keep showing?
– Salim Bou
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday
add a comment |
I have this example
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
Compiled with lualatex
I obtain this warning
Package fontspec Warning: Language 'English' not available for font
'Amiri'
What I have done wrong? or what I have missed?
beamer fontspec babel warnings
I have this example
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
Compiled with lualatex
I obtain this warning
Package fontspec Warning: Language 'English' not available for font
'Amiri'
What I have done wrong? or what I have missed?
beamer fontspec babel warnings
beamer fontspec babel warnings
asked yesterday
Salim BouSalim Bou
11.5k11442
11.5k11442
Why this warning keep showing?
– Salim Bou
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday
add a comment |
Why this warning keep showing?
– Salim Bou
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday
Why this warning keep showing?
– Salim Bou
yesterday
Why this warning keep showing?
– Salim Bou
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday
add a comment |
3 Answers
3
active
oldest
votes
This bugged me for a long time too. This is what is going on:
These are the scripts and languages supported by Amiri:
DFLT Default
arab Arabic
arab.ARA Arabic/Arabic
arab.KSH Arabic/Kashmiri
arab.SND Arabic/Sindhi
arab.URD Arabic/Urdu
latn Latin
latn.TRK Latin/Turkish
When you load Arabic with babelprovide[import=ar-DZ, main]{arabic}
then babel
reads in babel-ar-DZ.ini
.
In this file you will find (among other things):
tag.opentype = ARA
script.tag.opentype = arab
So when Algerian Arabic is the language in use, babel
will load Amiri with arab.ARA
script and language. This exists in the font, so all is good.
But babel-en.ini
contains this:
tag.opentype = ENG
script.tag.opentype = latn
So when English is in use, babel
will try and load Amiri with latn.ENG
script and language. Except this combination does not exist in the font, so a warning is issued by babel
:
Language 'English' not available for font 'Amiri' with script 'Latin'.
Now all we need to do is tell babel
to use Language=Default
with Script=Latin
for English while continuing to use Language=Arabic
with Script=Arabic
for Algerian Arabic.
To do this, remove english
from the main babel
options and instead load it like this:
babelprovide[import,language=Default]{english}
Note: babel
uses language
with a lowercase l
as opposed to fontspec
which uses Language
!
babel
will now load Amiri with supported options for English text and no warning is issued.
MWE
documentclass[hyperref=unicode]{beamer}
usepackage[nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelprovide[import, language=Default]{english}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
add a comment |
You can set the language to default:
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}[Language=Default]{Amiri}
babelfont{sf}[Language=Default]{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
4
Won't that change the language for both English and Arabic to Default?ar-DZ
asks forScript=Arabic
andLanguage=Arabic
. I thought it was better to dropenglish
out of thebabel
options and instead add inbabelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)
– David Purton
23 hours ago
1
Ulrike, David is right. This appliesLanguage=Default
to all languages, potentially breaking font features specific to some languages.
– Javier Bezos
21 hours ago
add a comment |
Nothing wrong, on the contrary. These warnings are shown by fontspec
, not by babel
. They could be irrelevant for English, but not for many other languages, including Arabic. To remove them altogether (they are only really useful when the document format is being set up), you may pass the silent
option to fontspec
:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
PassOptionsToPackage{silent}{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Or also:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
usepackage[silent]{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
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%2f478487%2favoid-fontspec-warning-with-babel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This bugged me for a long time too. This is what is going on:
These are the scripts and languages supported by Amiri:
DFLT Default
arab Arabic
arab.ARA Arabic/Arabic
arab.KSH Arabic/Kashmiri
arab.SND Arabic/Sindhi
arab.URD Arabic/Urdu
latn Latin
latn.TRK Latin/Turkish
When you load Arabic with babelprovide[import=ar-DZ, main]{arabic}
then babel
reads in babel-ar-DZ.ini
.
In this file you will find (among other things):
tag.opentype = ARA
script.tag.opentype = arab
So when Algerian Arabic is the language in use, babel
will load Amiri with arab.ARA
script and language. This exists in the font, so all is good.
But babel-en.ini
contains this:
tag.opentype = ENG
script.tag.opentype = latn
So when English is in use, babel
will try and load Amiri with latn.ENG
script and language. Except this combination does not exist in the font, so a warning is issued by babel
:
Language 'English' not available for font 'Amiri' with script 'Latin'.
Now all we need to do is tell babel
to use Language=Default
with Script=Latin
for English while continuing to use Language=Arabic
with Script=Arabic
for Algerian Arabic.
To do this, remove english
from the main babel
options and instead load it like this:
babelprovide[import,language=Default]{english}
Note: babel
uses language
with a lowercase l
as opposed to fontspec
which uses Language
!
babel
will now load Amiri with supported options for English text and no warning is issued.
MWE
documentclass[hyperref=unicode]{beamer}
usepackage[nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelprovide[import, language=Default]{english}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
add a comment |
This bugged me for a long time too. This is what is going on:
These are the scripts and languages supported by Amiri:
DFLT Default
arab Arabic
arab.ARA Arabic/Arabic
arab.KSH Arabic/Kashmiri
arab.SND Arabic/Sindhi
arab.URD Arabic/Urdu
latn Latin
latn.TRK Latin/Turkish
When you load Arabic with babelprovide[import=ar-DZ, main]{arabic}
then babel
reads in babel-ar-DZ.ini
.
In this file you will find (among other things):
tag.opentype = ARA
script.tag.opentype = arab
So when Algerian Arabic is the language in use, babel
will load Amiri with arab.ARA
script and language. This exists in the font, so all is good.
But babel-en.ini
contains this:
tag.opentype = ENG
script.tag.opentype = latn
So when English is in use, babel
will try and load Amiri with latn.ENG
script and language. Except this combination does not exist in the font, so a warning is issued by babel
:
Language 'English' not available for font 'Amiri' with script 'Latin'.
Now all we need to do is tell babel
to use Language=Default
with Script=Latin
for English while continuing to use Language=Arabic
with Script=Arabic
for Algerian Arabic.
To do this, remove english
from the main babel
options and instead load it like this:
babelprovide[import,language=Default]{english}
Note: babel
uses language
with a lowercase l
as opposed to fontspec
which uses Language
!
babel
will now load Amiri with supported options for English text and no warning is issued.
MWE
documentclass[hyperref=unicode]{beamer}
usepackage[nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelprovide[import, language=Default]{english}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
add a comment |
This bugged me for a long time too. This is what is going on:
These are the scripts and languages supported by Amiri:
DFLT Default
arab Arabic
arab.ARA Arabic/Arabic
arab.KSH Arabic/Kashmiri
arab.SND Arabic/Sindhi
arab.URD Arabic/Urdu
latn Latin
latn.TRK Latin/Turkish
When you load Arabic with babelprovide[import=ar-DZ, main]{arabic}
then babel
reads in babel-ar-DZ.ini
.
In this file you will find (among other things):
tag.opentype = ARA
script.tag.opentype = arab
So when Algerian Arabic is the language in use, babel
will load Amiri with arab.ARA
script and language. This exists in the font, so all is good.
But babel-en.ini
contains this:
tag.opentype = ENG
script.tag.opentype = latn
So when English is in use, babel
will try and load Amiri with latn.ENG
script and language. Except this combination does not exist in the font, so a warning is issued by babel
:
Language 'English' not available for font 'Amiri' with script 'Latin'.
Now all we need to do is tell babel
to use Language=Default
with Script=Latin
for English while continuing to use Language=Arabic
with Script=Arabic
for Algerian Arabic.
To do this, remove english
from the main babel
options and instead load it like this:
babelprovide[import,language=Default]{english}
Note: babel
uses language
with a lowercase l
as opposed to fontspec
which uses Language
!
babel
will now load Amiri with supported options for English text and no warning is issued.
MWE
documentclass[hyperref=unicode]{beamer}
usepackage[nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelprovide[import, language=Default]{english}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
This bugged me for a long time too. This is what is going on:
These are the scripts and languages supported by Amiri:
DFLT Default
arab Arabic
arab.ARA Arabic/Arabic
arab.KSH Arabic/Kashmiri
arab.SND Arabic/Sindhi
arab.URD Arabic/Urdu
latn Latin
latn.TRK Latin/Turkish
When you load Arabic with babelprovide[import=ar-DZ, main]{arabic}
then babel
reads in babel-ar-DZ.ini
.
In this file you will find (among other things):
tag.opentype = ARA
script.tag.opentype = arab
So when Algerian Arabic is the language in use, babel
will load Amiri with arab.ARA
script and language. This exists in the font, so all is good.
But babel-en.ini
contains this:
tag.opentype = ENG
script.tag.opentype = latn
So when English is in use, babel
will try and load Amiri with latn.ENG
script and language. Except this combination does not exist in the font, so a warning is issued by babel
:
Language 'English' not available for font 'Amiri' with script 'Latin'.
Now all we need to do is tell babel
to use Language=Default
with Script=Latin
for English while continuing to use Language=Arabic
with Script=Arabic
for Algerian Arabic.
To do this, remove english
from the main babel
options and instead load it like this:
babelprovide[import,language=Default]{english}
Note: babel
uses language
with a lowercase l
as opposed to fontspec
which uses Language
!
babel
will now load Amiri with supported options for English text and no warning is issued.
MWE
documentclass[hyperref=unicode]{beamer}
usepackage[nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelprovide[import, language=Default]{english}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
answered 23 hours ago
David PurtonDavid Purton
10.5k2938
10.5k2938
add a comment |
add a comment |
You can set the language to default:
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}[Language=Default]{Amiri}
babelfont{sf}[Language=Default]{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
4
Won't that change the language for both English and Arabic to Default?ar-DZ
asks forScript=Arabic
andLanguage=Arabic
. I thought it was better to dropenglish
out of thebabel
options and instead add inbabelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)
– David Purton
23 hours ago
1
Ulrike, David is right. This appliesLanguage=Default
to all languages, potentially breaking font features specific to some languages.
– Javier Bezos
21 hours ago
add a comment |
You can set the language to default:
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}[Language=Default]{Amiri}
babelfont{sf}[Language=Default]{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
4
Won't that change the language for both English and Arabic to Default?ar-DZ
asks forScript=Arabic
andLanguage=Arabic
. I thought it was better to dropenglish
out of thebabel
options and instead add inbabelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)
– David Purton
23 hours ago
1
Ulrike, David is right. This appliesLanguage=Default
to all languages, potentially breaking font features specific to some languages.
– Javier Bezos
21 hours ago
add a comment |
You can set the language to default:
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}[Language=Default]{Amiri}
babelfont{sf}[Language=Default]{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
You can set the language to default:
documentclass[hyperref=unicode]{beamer}
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
babelfont{rm}[Language=Default]{Amiri}
babelfont{sf}[Language=Default]{Amiri}
begin{document}
begin{frame}{}
today
end{frame}
begin{frame}{}
selectlanguage{english}
today
end{frame}
end{document}
answered yesterday
Ulrike FischerUlrike Fischer
194k8302688
194k8302688
4
Won't that change the language for both English and Arabic to Default?ar-DZ
asks forScript=Arabic
andLanguage=Arabic
. I thought it was better to dropenglish
out of thebabel
options and instead add inbabelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)
– David Purton
23 hours ago
1
Ulrike, David is right. This appliesLanguage=Default
to all languages, potentially breaking font features specific to some languages.
– Javier Bezos
21 hours ago
add a comment |
4
Won't that change the language for both English and Arabic to Default?ar-DZ
asks forScript=Arabic
andLanguage=Arabic
. I thought it was better to dropenglish
out of thebabel
options and instead add inbabelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)
– David Purton
23 hours ago
1
Ulrike, David is right. This appliesLanguage=Default
to all languages, potentially breaking font features specific to some languages.
– Javier Bezos
21 hours ago
4
4
Won't that change the language for both English and Arabic to Default?
ar-DZ
asks for Script=Arabic
and Language=Arabic
. I thought it was better to drop english
out of the babel
options and instead add in babelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)– David Purton
23 hours ago
Won't that change the language for both English and Arabic to Default?
ar-DZ
asks for Script=Arabic
and Language=Arabic
. I thought it was better to drop english
out of the babel
options and instead add in babelprovide[import,language=Default]{english}
. This only changes the Language to Default for English text and leaves it as Arabic for Arabic text. (I'm not familiar enough with Arabic to know if this actually makes a difference in this case, but surely it would sometimes?)– David Purton
23 hours ago
1
1
Ulrike, David is right. This applies
Language=Default
to all languages, potentially breaking font features specific to some languages.– Javier Bezos
21 hours ago
Ulrike, David is right. This applies
Language=Default
to all languages, potentially breaking font features specific to some languages.– Javier Bezos
21 hours ago
add a comment |
Nothing wrong, on the contrary. These warnings are shown by fontspec
, not by babel
. They could be irrelevant for English, but not for many other languages, including Arabic. To remove them altogether (they are only really useful when the document format is being set up), you may pass the silent
option to fontspec
:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
PassOptionsToPackage{silent}{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Or also:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
usepackage[silent]{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
add a comment |
Nothing wrong, on the contrary. These warnings are shown by fontspec
, not by babel
. They could be irrelevant for English, but not for many other languages, including Arabic. To remove them altogether (they are only really useful when the document format is being set up), you may pass the silent
option to fontspec
:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
PassOptionsToPackage{silent}{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Or also:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
usepackage[silent]{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
add a comment |
Nothing wrong, on the contrary. These warnings are shown by fontspec
, not by babel
. They could be irrelevant for English, but not for many other languages, including Arabic. To remove them altogether (they are only really useful when the document format is being set up), you may pass the silent
option to fontspec
:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
PassOptionsToPackage{silent}{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Or also:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
usepackage[silent]{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Nothing wrong, on the contrary. These warnings are shown by fontspec
, not by babel
. They could be irrelevant for English, but not for many other languages, including Arabic. To remove them altogether (they are only really useful when the document format is being set up), you may pass the silent
option to fontspec
:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
PassOptionsToPackage{silent}{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
Or also:
usepackage[english,nil,bidi=basic-r]{babel}
babelprovide[import=ar-DZ, main]{arabic}
usepackage[silent]{fontspec}
babelfont{rm}{Amiri}
babelfont{sf}{Amiri}
answered 22 hours ago
Javier BezosJavier Bezos
3,9151216
3,9151216
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%2f478487%2favoid-fontspec-warning-with-babel%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
Why this warning keep showing?
– Salim Bou
yesterday
Sorry @Salim, I noticed the warning now. You are right. But I don't know.
– ferahfeza
yesterday