Please use latin2 or utf8 (inputenc) with magyar babel warning
Clash Royale CLAN TAG#URR8PPP
up vote
5
down vote
favorite
Here is a minimal reproducible example:
documentclass[a4paper]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
Compiling this results in a Please use usepackage[latin2]inputenc or usepackage[utf8]inputenc with usepackage[magyar]babel
warning.
An earlier question addressed this, but I still receive this warning, despite the fact that I've the newest magyar.ldf
in my texmf tree (1.5c) and I've positively verified that it contains the bugfix mentioned there (defmagyar@sugg@ie@low#1@inpenc@undefined@#2#3vfuzz#4{%
).
babel hungarian
add a comment |Â
up vote
5
down vote
favorite
Here is a minimal reproducible example:
documentclass[a4paper]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
Compiling this results in a Please use usepackage[latin2]inputenc or usepackage[utf8]inputenc with usepackage[magyar]babel
warning.
An earlier question addressed this, but I still receive this warning, despite the fact that I've the newest magyar.ldf
in my texmf tree (1.5c) and I've positively verified that it contains the bugfix mentioned there (defmagyar@sugg@ie@low#1@inpenc@undefined@#2#3vfuzz#4{%
).
babel hungarian
add a comment |Â
up vote
5
down vote
favorite
up vote
5
down vote
favorite
Here is a minimal reproducible example:
documentclass[a4paper]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
Compiling this results in a Please use usepackage[latin2]inputenc or usepackage[utf8]inputenc with usepackage[magyar]babel
warning.
An earlier question addressed this, but I still receive this warning, despite the fact that I've the newest magyar.ldf
in my texmf tree (1.5c) and I've positively verified that it contains the bugfix mentioned there (defmagyar@sugg@ie@low#1@inpenc@undefined@#2#3vfuzz#4{%
).
babel hungarian
Here is a minimal reproducible example:
documentclass[a4paper]article
usepackage[utf8]inputenc
usepackage[T1]fontenc
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
Compiling this results in a Please use usepackage[latin2]inputenc or usepackage[utf8]inputenc with usepackage[magyar]babel
warning.
An earlier question addressed this, but I still receive this warning, despite the fact that I've the newest magyar.ldf
in my texmf tree (1.5c) and I've positively verified that it contains the bugfix mentioned there (defmagyar@sugg@ie@low#1@inpenc@undefined@#2#3vfuzz#4{%
).
babel hungarian
asked Aug 19 at 9:19
Tamas Ferenci
394149
394149
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
4
down vote
Starting from the 2018-04-01 release, LaTeX directly supports UTF-8, so the instruction usepackage[utf8]inputenc
does nothing apart from loading inputenc
. In particular, utf8.def
is not loaded, which makes magyar.ldf
that no support for UTF-8 exists.
This should be addressed by the maintainer of magyar.ldf
.
In the meantime, you can avoid the spurious warning:
documentclass[a4paper]article
usepackage[T1]fontenc
%usepackage[utf8]inputenc % not needed with LaTeX 2018-04-01 or later
defmagyarOptionsdefaults=hu-min,suggestions=no
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
A different strategy is to keep the same setup as before, but adding a command at the beginning.
UseRawInputEncoding
documentclass[a4paper]article
usepackage[T1]fontenc
usepackage[utf8]inputenc
defmagyarOptionsdefaults=hu-min
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
The setting to magyarOptions
is recommended in the magyar.ldf
file notes.
You could also force the definition of@inpenc@undefined
, which is where the data comes from
â Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, thesuggestions=no
method seems better.
â egreg
Aug 19 at 9:39
add a comment |Â
up vote
1
down vote
use usepackage[latin2,utf8]inputenc
and everything should be fine.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Starting from the 2018-04-01 release, LaTeX directly supports UTF-8, so the instruction usepackage[utf8]inputenc
does nothing apart from loading inputenc
. In particular, utf8.def
is not loaded, which makes magyar.ldf
that no support for UTF-8 exists.
This should be addressed by the maintainer of magyar.ldf
.
In the meantime, you can avoid the spurious warning:
documentclass[a4paper]article
usepackage[T1]fontenc
%usepackage[utf8]inputenc % not needed with LaTeX 2018-04-01 or later
defmagyarOptionsdefaults=hu-min,suggestions=no
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
A different strategy is to keep the same setup as before, but adding a command at the beginning.
UseRawInputEncoding
documentclass[a4paper]article
usepackage[T1]fontenc
usepackage[utf8]inputenc
defmagyarOptionsdefaults=hu-min
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
The setting to magyarOptions
is recommended in the magyar.ldf
file notes.
You could also force the definition of@inpenc@undefined
, which is where the data comes from
â Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, thesuggestions=no
method seems better.
â egreg
Aug 19 at 9:39
add a comment |Â
up vote
4
down vote
Starting from the 2018-04-01 release, LaTeX directly supports UTF-8, so the instruction usepackage[utf8]inputenc
does nothing apart from loading inputenc
. In particular, utf8.def
is not loaded, which makes magyar.ldf
that no support for UTF-8 exists.
This should be addressed by the maintainer of magyar.ldf
.
In the meantime, you can avoid the spurious warning:
documentclass[a4paper]article
usepackage[T1]fontenc
%usepackage[utf8]inputenc % not needed with LaTeX 2018-04-01 or later
defmagyarOptionsdefaults=hu-min,suggestions=no
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
A different strategy is to keep the same setup as before, but adding a command at the beginning.
UseRawInputEncoding
documentclass[a4paper]article
usepackage[T1]fontenc
usepackage[utf8]inputenc
defmagyarOptionsdefaults=hu-min
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
The setting to magyarOptions
is recommended in the magyar.ldf
file notes.
You could also force the definition of@inpenc@undefined
, which is where the data comes from
â Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, thesuggestions=no
method seems better.
â egreg
Aug 19 at 9:39
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Starting from the 2018-04-01 release, LaTeX directly supports UTF-8, so the instruction usepackage[utf8]inputenc
does nothing apart from loading inputenc
. In particular, utf8.def
is not loaded, which makes magyar.ldf
that no support for UTF-8 exists.
This should be addressed by the maintainer of magyar.ldf
.
In the meantime, you can avoid the spurious warning:
documentclass[a4paper]article
usepackage[T1]fontenc
%usepackage[utf8]inputenc % not needed with LaTeX 2018-04-01 or later
defmagyarOptionsdefaults=hu-min,suggestions=no
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
A different strategy is to keep the same setup as before, but adding a command at the beginning.
UseRawInputEncoding
documentclass[a4paper]article
usepackage[T1]fontenc
usepackage[utf8]inputenc
defmagyarOptionsdefaults=hu-min
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
The setting to magyarOptions
is recommended in the magyar.ldf
file notes.
Starting from the 2018-04-01 release, LaTeX directly supports UTF-8, so the instruction usepackage[utf8]inputenc
does nothing apart from loading inputenc
. In particular, utf8.def
is not loaded, which makes magyar.ldf
that no support for UTF-8 exists.
This should be addressed by the maintainer of magyar.ldf
.
In the meantime, you can avoid the spurious warning:
documentclass[a4paper]article
usepackage[T1]fontenc
%usepackage[utf8]inputenc % not needed with LaTeX 2018-04-01 or later
defmagyarOptionsdefaults=hu-min,suggestions=no
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
A different strategy is to keep the same setup as before, but adding a command at the beginning.
UseRawInputEncoding
documentclass[a4paper]article
usepackage[T1]fontenc
usepackage[utf8]inputenc
defmagyarOptionsdefaults=hu-min
usepackage[magyar]babel
begindocument
ÃÂrvÃÂztÃ
±rÃ
 tükörfúrógép.
enddocument
The setting to magyarOptions
is recommended in the magyar.ldf
file notes.
answered Aug 19 at 9:31
egreg
680k8318073051
680k8318073051
You could also force the definition of@inpenc@undefined
, which is where the data comes from
â Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, thesuggestions=no
method seems better.
â egreg
Aug 19 at 9:39
add a comment |Â
You could also force the definition of@inpenc@undefined
, which is where the data comes from
â Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, thesuggestions=no
method seems better.
â egreg
Aug 19 at 9:39
You could also force the definition of
@inpenc@undefined
, which is where the data comes fromâ Joseph Wrightâ¦
Aug 19 at 9:34
You could also force the definition of
@inpenc@undefined
, which is where the data comes fromâ Joseph Wrightâ¦
Aug 19 at 9:34
@JosephWright Yes, but since the suggestions are useless anyway, the
suggestions=no
method seems better.â egreg
Aug 19 at 9:39
@JosephWright Yes, but since the suggestions are useless anyway, the
suggestions=no
method seems better.â egreg
Aug 19 at 9:39
add a comment |Â
up vote
1
down vote
use usepackage[latin2,utf8]inputenc
and everything should be fine.
add a comment |Â
up vote
1
down vote
use usepackage[latin2,utf8]inputenc
and everything should be fine.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
use usepackage[latin2,utf8]inputenc
and everything should be fine.
use usepackage[latin2,utf8]inputenc
and everything should be fine.
answered Aug 19 at 9:22
Herbert
261k21395705
261k21395705
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f446650%2fplease-use-latin2-or-utf8-inputenc-with-magyar-babel-warning%23new-answer', 'question_page');
);
Post as a guest
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
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
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