Please use latin2 or utf8 (inputenc) with magyar babel warning

The name of the pictureThe name of the pictureThe name of the pictureClash 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{%).







share|improve this question
























    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{%).







    share|improve this question






















      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{%).







      share|improve this question












      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{%).









      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 19 at 9:19









      Tamas Ferenci

      394149




      394149




















          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.






          share|improve this answer




















          • 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

















          up vote
          1
          down vote













          use usepackage[latin2,utf8]inputenc and everything should be fine.






          share|improve this answer




















            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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            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






























            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.






            share|improve this answer




















            • 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














            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.






            share|improve this answer




















            • 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












            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.






            share|improve this answer












            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.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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, the suggestions=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










            • @JosephWright Yes, but since the suggestions are useless anyway, the suggestions=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










            up vote
            1
            down vote













            use usepackage[latin2,utf8]inputenc and everything should be fine.






            share|improve this answer
























              up vote
              1
              down vote













              use usepackage[latin2,utf8]inputenc and everything should be fine.






              share|improve this answer






















                up vote
                1
                down vote










                up vote
                1
                down vote









                use usepackage[latin2,utf8]inputenc and everything should be fine.






                share|improve this answer












                use usepackage[latin2,utf8]inputenc and everything should be fine.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 19 at 9:22









                Herbert

                261k21395705




                261k21395705



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    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













































































                    Comments

                    Popular posts from this blog

                    Long meetings (6-7 hours a day): Being “babysat” by supervisor

                    Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                    Confectionery