Warnings when using babel with LuaLaTeX
up vote
2
down vote
favorite
Recently I have started using LuaLaTeX over pdfLaTeX, without any real issue so far.
When working on a project I have noticed some warning messages I have failed to decpiher after consulting Google and TeXExchange:
LaTeX Warning: Please use usepackage{t1enc} with
usepackage[magyar]{babel}, to get accented chars hyphenated.
LaTeX Warning: Please use usepackage[latin2]{inputenc}
or usepackage[utf8]{inputenc}
with usepackage[magyar]{babel}.
Currently I am writing my document in english with some hungarian mixed in (my university requires hungarian declarations in a thesis). I use usepackage[magyar,english]{babel}
so that both hungarian and english are loaded but english is used by default, then I switch over to hungarian using an otherlanguage
environment when I need to, like so:
... english text ...
begin{otherlanguage}{magyar}
... hungarian text ...
end{otherlanguage}
... english text ...
The warning really is a warning in the sense that hyphenation seems to work just fine.
Any ideas what produces this warning? I have been thinking about weird package loading order problems, but trying different permutations didn't get rid of this warning.
Example document producing this error:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
I compile it using latexmk -lualatex <file.tex>
.
luatex babel unicode warnings
add a comment |
up vote
2
down vote
favorite
Recently I have started using LuaLaTeX over pdfLaTeX, without any real issue so far.
When working on a project I have noticed some warning messages I have failed to decpiher after consulting Google and TeXExchange:
LaTeX Warning: Please use usepackage{t1enc} with
usepackage[magyar]{babel}, to get accented chars hyphenated.
LaTeX Warning: Please use usepackage[latin2]{inputenc}
or usepackage[utf8]{inputenc}
with usepackage[magyar]{babel}.
Currently I am writing my document in english with some hungarian mixed in (my university requires hungarian declarations in a thesis). I use usepackage[magyar,english]{babel}
so that both hungarian and english are loaded but english is used by default, then I switch over to hungarian using an otherlanguage
environment when I need to, like so:
... english text ...
begin{otherlanguage}{magyar}
... hungarian text ...
end{otherlanguage}
... english text ...
The warning really is a warning in the sense that hyphenation seems to work just fine.
Any ideas what produces this warning? I have been thinking about weird package loading order problems, but trying different permutations didn't get rid of this warning.
Example document producing this error:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
I compile it using latexmk -lualatex <file.tex>
.
luatex babel unicode warnings
1
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
4
Very likely nothing wrong, just a language style which has not been updated (t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.
– Javier Bezos
Dec 1 at 8:44
2
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case theinputenc
and/orfontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long asfontspec
is loaded. You may ignore the warning messages.
– Mico
Dec 1 at 9:01
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
Recently I have started using LuaLaTeX over pdfLaTeX, without any real issue so far.
When working on a project I have noticed some warning messages I have failed to decpiher after consulting Google and TeXExchange:
LaTeX Warning: Please use usepackage{t1enc} with
usepackage[magyar]{babel}, to get accented chars hyphenated.
LaTeX Warning: Please use usepackage[latin2]{inputenc}
or usepackage[utf8]{inputenc}
with usepackage[magyar]{babel}.
Currently I am writing my document in english with some hungarian mixed in (my university requires hungarian declarations in a thesis). I use usepackage[magyar,english]{babel}
so that both hungarian and english are loaded but english is used by default, then I switch over to hungarian using an otherlanguage
environment when I need to, like so:
... english text ...
begin{otherlanguage}{magyar}
... hungarian text ...
end{otherlanguage}
... english text ...
The warning really is a warning in the sense that hyphenation seems to work just fine.
Any ideas what produces this warning? I have been thinking about weird package loading order problems, but trying different permutations didn't get rid of this warning.
Example document producing this error:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
I compile it using latexmk -lualatex <file.tex>
.
luatex babel unicode warnings
Recently I have started using LuaLaTeX over pdfLaTeX, without any real issue so far.
When working on a project I have noticed some warning messages I have failed to decpiher after consulting Google and TeXExchange:
LaTeX Warning: Please use usepackage{t1enc} with
usepackage[magyar]{babel}, to get accented chars hyphenated.
LaTeX Warning: Please use usepackage[latin2]{inputenc}
or usepackage[utf8]{inputenc}
with usepackage[magyar]{babel}.
Currently I am writing my document in english with some hungarian mixed in (my university requires hungarian declarations in a thesis). I use usepackage[magyar,english]{babel}
so that both hungarian and english are loaded but english is used by default, then I switch over to hungarian using an otherlanguage
environment when I need to, like so:
... english text ...
begin{otherlanguage}{magyar}
... hungarian text ...
end{otherlanguage}
... english text ...
The warning really is a warning in the sense that hyphenation seems to work just fine.
Any ideas what produces this warning? I have been thinking about weird package loading order problems, but trying different permutations didn't get rid of this warning.
Example document producing this error:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
I compile it using latexmk -lualatex <file.tex>
.
luatex babel unicode warnings
luatex babel unicode warnings
edited Dec 1 at 8:34
asked Dec 1 at 8:29
krispet krispet
1134
1134
1
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
4
Very likely nothing wrong, just a language style which has not been updated (t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.
– Javier Bezos
Dec 1 at 8:44
2
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case theinputenc
and/orfontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long asfontspec
is loaded. You may ignore the warning messages.
– Mico
Dec 1 at 9:01
add a comment |
1
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
4
Very likely nothing wrong, just a language style which has not been updated (t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.
– Javier Bezos
Dec 1 at 8:44
2
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case theinputenc
and/orfontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long asfontspec
is loaded. You may ignore the warning messages.
– Mico
Dec 1 at 9:01
1
1
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
4
4
Very likely nothing wrong, just a language style which has not been updated (
t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.– Javier Bezos
Dec 1 at 8:44
Very likely nothing wrong, just a language style which has not been updated (
t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.– Javier Bezos
Dec 1 at 8:44
2
2
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case the
inputenc
and/or fontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long as fontspec
is loaded. You may ignore the warning messages.– Mico
Dec 1 at 9:01
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case the
inputenc
and/or fontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long as fontspec
is loaded. You may ignore the warning messages.– Mico
Dec 1 at 9:01
add a comment |
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
You can use this to suppress the warnings:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
defmagyarOptions{suggestions=no}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
magyar.ldf is quite long and contains lots of adaptions and patches (often optional). It obviously hasn't been adapted to lualatex/xelatex yet. The fontencoding seems to be ok with this engines but there is no garanty that there isn't somewhere code which implicitly assumes an 8-bit engine. So check the output.
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
You can use this to suppress the warnings:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
defmagyarOptions{suggestions=no}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
magyar.ldf is quite long and contains lots of adaptions and patches (often optional). It obviously hasn't been adapted to lualatex/xelatex yet. The fontencoding seems to be ok with this engines but there is no garanty that there isn't somewhere code which implicitly assumes an 8-bit engine. So check the output.
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
add a comment |
up vote
4
down vote
accepted
You can use this to suppress the warnings:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
defmagyarOptions{suggestions=no}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
magyar.ldf is quite long and contains lots of adaptions and patches (often optional). It obviously hasn't been adapted to lualatex/xelatex yet. The fontencoding seems to be ok with this engines but there is no garanty that there isn't somewhere code which implicitly assumes an 8-bit engine. So check the output.
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
You can use this to suppress the warnings:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
defmagyarOptions{suggestions=no}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
magyar.ldf is quite long and contains lots of adaptions and patches (often optional). It obviously hasn't been adapted to lualatex/xelatex yet. The fontencoding seems to be ok with this engines but there is no garanty that there isn't somewhere code which implicitly assumes an 8-bit engine. So check the output.
You can use this to suppress the warnings:
documentclass[12pt,a4paper]{report}
usepackage{fontspec}
defmagyarOptions{suggestions=no}
usepackage[magyar,english]{babel}
begin{document}
This is such a nice document.
end{document}
magyar.ldf is quite long and contains lots of adaptions and patches (often optional). It obviously hasn't been adapted to lualatex/xelatex yet. The fontencoding seems to be ok with this engines but there is no garanty that there isn't somewhere code which implicitly assumes an 8-bit engine. So check the output.
answered Dec 1 at 9:58
Ulrike Fischer
184k7289664
184k7289664
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
add a comment |
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
Would you actually suggest doing this? I mean couldn't this potentially suppress actually useful warnings later on? I am quite suprised to learn that things like this weren't adopted yet, as LuaLaTeX is like 8 years old now and is the offical successor to pdfLaTeX.
– krispet krispet
Dec 1 at 10:59
1
1
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
Sorry I don't have the time to analyze the code. The option suppresses around 6 "suggestions", you can find them in line 2550-2650. lualatex is not the "official" successor of pdflatex, and things get adapted when someone does it. Ask the maintainer or find someelse with the needed knowledges about tex, luatex and hungarian to do it.
– Ulrike Fischer
Dec 1 at 11:14
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f462664%2fwarnings-when-using-babel-with-lualatex%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
1
Welcome to TeX.SX! Please help us help you by providing a minimal compilable code example (MWE).
– TeXnician
Dec 1 at 8:31
4
Very likely nothing wrong, just a language style which has not been updated (
t1enc
is very very old and obsolete). If everything is ok, just ignore the warnings.– Javier Bezos
Dec 1 at 8:44
2
It very much sounds like the warning messages are meant to be issued only under pdfLaTeX -- in case the
inputenc
and/orfontenc
packages did not get loaded. Under both LuaLaTeX and XeLaTeX, these packages shouldn't be loaded anyway as long asfontspec
is loaded. You may ignore the warning messages.– Mico
Dec 1 at 9:01