Expl3 and recent xparse on overleaf: No expl3 loader detectedHow can I make RHEL server libraries compatible with tex/Rnw documents created on my Ubuntu desktop, re: pgf, tikz, expl3What's the deal with Tex Live and expl3.sty?How can I install uarial.sty on a mac?How to update tikz properly, or how to revert what I didInstalling mwe packageA package (installed according to TeX Live Utility) doesn't runCan't manually install opensans on Ubuntu 12.04.3 LTSInstalling bbm.sty in linuxpsboxit.sty not found MacTeX (mac osx)system search path wrong

Department head said that group project may be rejected. How to mitigate?

What does it mean for a program to be 32 or 64 bit?

Managing heat dissipation in a magic wand

How can sister protect herself from impulse purchases with a credit card?

How do you cope with rejection?

Gambler's Fallacy Dice

Mikrokosmos, BB 105, Vol. 1: No. 17 Contrary Motion (1) - Can't understand the structure

How could Dwarves prevent sand from filling up their settlements

why "American-born", not "America-born"?

Connecting circles clockwise in TikZ

What city and town structures are important in a low fantasy medieval world?

Why "strap-on" boosters, and how do other people say it?

What variables do I have to take into consideration when I homebrew armour?

Hotel booking: Why is Agoda much cheaper than booking.com?

How should I mix small caps with digits or symbols?

How do we explain the use of a software on a math paper?

Are CTRL+C and <esc> the same?

400–430 degrees Celsius heated bath

Don't understand notation of morphisms in Monoid definition

Best practice for printing and evaluating formulas with the minimal coding

Germany rejected my entry to Schengen countries

pwaS eht tirsf dna tasl setterl fo hace dorw

Why is this python script running in background consuming 100 % CPU?

Why use nominative in Coniugatio periphrastica passiva?



Expl3 and recent xparse on overleaf: No expl3 loader detected


How can I make RHEL server libraries compatible with tex/Rnw documents created on my Ubuntu desktop, re: pgf, tikz, expl3What's the deal with Tex Live and expl3.sty?How can I install uarial.sty on a mac?How to update tikz properly, or how to revert what I didInstalling mwe packageA package (installed according to TeX Live Utility) doesn't runCan't manually install opensans on Ubuntu 12.04.3 LTSInstalling bbm.sty in linuxpsboxit.sty not found MacTeX (mac osx)system search path wrong













4















I'm currently writting a library that requires a recent xparse (to have the +b option for environments). Unfortunately, my computer does not have such recent xparse, so I downloaded the package here, ran



latex xparse.ins


and I copied the file into my project, together with my library. I put this file in the repository, so now one can simply do:



git clone https://github.com/leo-colisson/proof-at-the-end.git
pdflatex demo.tex && pdflatex demo.tex


to install and test the library, with a recent xparse. Great.



But there is an issue. My distro is pretty recent compared to overleaf (latex 2017 I think?) and unfortunately expl3 (used by xparse) is too old as well on overleaf (it does not provide c_novalue_tl used by xparse). So my co-author cannot use the library on overleaf. Damn.



So I tried to download the library expl3, ran



latex l3.ins


And I copied the produced expl3.sty in my main project (so now I have expl3.sty, xparse.sty, proof-at-the-end.sty, and demo.tex). Boom! Now everything is broken:



  • On my main computer I have an error:

(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) (./xparse.sty
(./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

! Package expl3 Error: Mismatched expl3 files detected.

See the expl3 package documentation for explanation.
Type H <return> for immediate help.
...

l.106 next


  • On overleaf I now have an error

 Package expl3 Error: No expl3 loader detected.

See the expl3 package documentation for explanation.
Type H <return> for immediate help.
... l.126 next

You have attempted to use the expl3 code directly rather than using the correct loader. Loading of expl3 will abort.


I am really new to Latex 3, so I have no idea how to fix this issue, on both overleaf and on my local install. What is the proper way to "install" locally a recent expl3/xparse on a desktop and on overleaf, so that everybody can use my library by simply downloading a few files?



Thanks!










share|improve this question


























    4















    I'm currently writting a library that requires a recent xparse (to have the +b option for environments). Unfortunately, my computer does not have such recent xparse, so I downloaded the package here, ran



    latex xparse.ins


    and I copied the file into my project, together with my library. I put this file in the repository, so now one can simply do:



    git clone https://github.com/leo-colisson/proof-at-the-end.git
    pdflatex demo.tex && pdflatex demo.tex


    to install and test the library, with a recent xparse. Great.



    But there is an issue. My distro is pretty recent compared to overleaf (latex 2017 I think?) and unfortunately expl3 (used by xparse) is too old as well on overleaf (it does not provide c_novalue_tl used by xparse). So my co-author cannot use the library on overleaf. Damn.



    So I tried to download the library expl3, ran



    latex l3.ins


    And I copied the produced expl3.sty in my main project (so now I have expl3.sty, xparse.sty, proof-at-the-end.sty, and demo.tex). Boom! Now everything is broken:



    • On my main computer I have an error:

    (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) (./xparse.sty
    (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

    ! Package expl3 Error: Mismatched expl3 files detected.

    See the expl3 package documentation for explanation.
    Type H <return> for immediate help.
    ...

    l.106 next


    • On overleaf I now have an error

     Package expl3 Error: No expl3 loader detected.

    See the expl3 package documentation for explanation.
    Type H <return> for immediate help.
    ... l.126 next

    You have attempted to use the expl3 code directly rather than using the correct loader. Loading of expl3 will abort.


    I am really new to Latex 3, so I have no idea how to fix this issue, on both overleaf and on my local install. What is the proper way to "install" locally a recent expl3/xparse on a desktop and on overleaf, so that everybody can use my library by simply downloading a few files?



    Thanks!










    share|improve this question
























      4












      4








      4








      I'm currently writting a library that requires a recent xparse (to have the +b option for environments). Unfortunately, my computer does not have such recent xparse, so I downloaded the package here, ran



      latex xparse.ins


      and I copied the file into my project, together with my library. I put this file in the repository, so now one can simply do:



      git clone https://github.com/leo-colisson/proof-at-the-end.git
      pdflatex demo.tex && pdflatex demo.tex


      to install and test the library, with a recent xparse. Great.



      But there is an issue. My distro is pretty recent compared to overleaf (latex 2017 I think?) and unfortunately expl3 (used by xparse) is too old as well on overleaf (it does not provide c_novalue_tl used by xparse). So my co-author cannot use the library on overleaf. Damn.



      So I tried to download the library expl3, ran



      latex l3.ins


      And I copied the produced expl3.sty in my main project (so now I have expl3.sty, xparse.sty, proof-at-the-end.sty, and demo.tex). Boom! Now everything is broken:



      • On my main computer I have an error:

      (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) (./xparse.sty
      (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

      ! Package expl3 Error: Mismatched expl3 files detected.

      See the expl3 package documentation for explanation.
      Type H <return> for immediate help.
      ...

      l.106 next


      • On overleaf I now have an error

       Package expl3 Error: No expl3 loader detected.

      See the expl3 package documentation for explanation.
      Type H <return> for immediate help.
      ... l.126 next

      You have attempted to use the expl3 code directly rather than using the correct loader. Loading of expl3 will abort.


      I am really new to Latex 3, so I have no idea how to fix this issue, on both overleaf and on my local install. What is the proper way to "install" locally a recent expl3/xparse on a desktop and on overleaf, so that everybody can use my library by simply downloading a few files?



      Thanks!










      share|improve this question














      I'm currently writting a library that requires a recent xparse (to have the +b option for environments). Unfortunately, my computer does not have such recent xparse, so I downloaded the package here, ran



      latex xparse.ins


      and I copied the file into my project, together with my library. I put this file in the repository, so now one can simply do:



      git clone https://github.com/leo-colisson/proof-at-the-end.git
      pdflatex demo.tex && pdflatex demo.tex


      to install and test the library, with a recent xparse. Great.



      But there is an issue. My distro is pretty recent compared to overleaf (latex 2017 I think?) and unfortunately expl3 (used by xparse) is too old as well on overleaf (it does not provide c_novalue_tl used by xparse). So my co-author cannot use the library on overleaf. Damn.



      So I tried to download the library expl3, ran



      latex l3.ins


      And I copied the produced expl3.sty in my main project (so now I have expl3.sty, xparse.sty, proof-at-the-end.sty, and demo.tex). Boom! Now everything is broken:



      • On my main computer I have an error:

      (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty) (./xparse.sty
      (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

      ! Package expl3 Error: Mismatched expl3 files detected.

      See the expl3 package documentation for explanation.
      Type H <return> for immediate help.
      ...

      l.106 next


      • On overleaf I now have an error

       Package expl3 Error: No expl3 loader detected.

      See the expl3 package documentation for explanation.
      Type H <return> for immediate help.
      ... l.126 next

      You have attempted to use the expl3 code directly rather than using the correct loader. Loading of expl3 will abort.


      I am really new to Latex 3, so I have no idea how to fix this issue, on both overleaf and on my local install. What is the proper way to "install" locally a recent expl3/xparse on a desktop and on overleaf, so that everybody can use my library by simply downloading a few files?



      Thanks!







      installing expl3 xparse






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 7 at 16:19









      tobiasBoratobiasBora

      1,377316




      1,377316




















          2 Answers
          2






          active

          oldest

          votes


















          6














          You need to upload the entire l3kernel. The log says it used the local expl3.sty but used expl3-code.tex (the actual expl3 code) from /usr/share/texlive/texmf-dist/tex/latex/l3kernel/:



          (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

          ! Package expl3 Error: Mismatched expl3 files detected.


          You need to upload this file too to get it working. Better yet, upload the entire kernel (including driver files and other stuff that you might need):



          -rw-rw-r-- 1 phelype phelype 991026 Mai 7 13:25 expl3-code.tex
          -rw-rw-r-- 1 phelype phelype 2882 Mai 7 13:25 expl3-generic.tex
          -rw-rw-r-- 1 phelype phelype 3868 Mai 7 13:25 expl3.lua
          -rw-rw-r-- 1 phelype phelype 9894 Mai 7 13:25 expl3.sty
          -rw-rw-r-- 1 phelype phelype 20583 Mai 7 13:25 l3dvipdfmx.def
          -rw-rw-r-- 1 phelype phelype 37442 Mai 7 13:25 l3dvips.def
          -rw-rw-r-- 1 phelype phelype 15331 Mai 7 13:25 l3dvisvgm.def
          -rw-rw-r-- 1 phelype phelype 63076 Mai 7 13:25 l3names.def
          -rw-rw-r-- 1 phelype phelype 21611 Mai 7 13:25 l3pdfmode.def
          -rw-rw-r-- 1 phelype phelype 22242 Mai 7 13:25 l3xdvipdfmx.def



          • expl3-code.tex is the actual expl3 code. Without that nothing works;


          • expl3-generic.tex is the generic loader, in case you are using other format other than LaTeX;


          • expl3.lua are the Lua routines in case you are using expl3 with LuaTeX;


          • expl3.sty is the loader for LaTeX (counterpart of expl3-generic.tex);

          • The remaining .def files are driver-specific definitions which are loaded depending on which engine you use.





          share|improve this answer
































            5














            Phelype Oleinik has given an excellent answer , but I'd like to point to a couple of another method.



            We provide a TDS-style zip file which available from CTAN. This is 'pre-extracted' and explicitly contains a tex/latex directory with all of the run-time files in it. A copy of the content of that directory will always have a full set of matching files.






            share|improve this answer























            • Nice :) I always go for the hard way :P

              – Phelype Oleinik
              May 7 at 16:43











            • @PhelypeOleinik Well I actually make those zip files ...

              – Joseph Wright
              May 7 at 16:44












            • I always thought those were automagically generated by the system .-.

              – Phelype Oleinik
              May 7 at 16:50






            • 1





              @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

              – Joseph Wright
              May 7 at 18:07






            • 1





              @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

              – Phelype Oleinik
              May 7 at 18:14












            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
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489646%2fexpl3-and-recent-xparse-on-overleaf-no-expl3-loader-detected%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6














            You need to upload the entire l3kernel. The log says it used the local expl3.sty but used expl3-code.tex (the actual expl3 code) from /usr/share/texlive/texmf-dist/tex/latex/l3kernel/:



            (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

            ! Package expl3 Error: Mismatched expl3 files detected.


            You need to upload this file too to get it working. Better yet, upload the entire kernel (including driver files and other stuff that you might need):



            -rw-rw-r-- 1 phelype phelype 991026 Mai 7 13:25 expl3-code.tex
            -rw-rw-r-- 1 phelype phelype 2882 Mai 7 13:25 expl3-generic.tex
            -rw-rw-r-- 1 phelype phelype 3868 Mai 7 13:25 expl3.lua
            -rw-rw-r-- 1 phelype phelype 9894 Mai 7 13:25 expl3.sty
            -rw-rw-r-- 1 phelype phelype 20583 Mai 7 13:25 l3dvipdfmx.def
            -rw-rw-r-- 1 phelype phelype 37442 Mai 7 13:25 l3dvips.def
            -rw-rw-r-- 1 phelype phelype 15331 Mai 7 13:25 l3dvisvgm.def
            -rw-rw-r-- 1 phelype phelype 63076 Mai 7 13:25 l3names.def
            -rw-rw-r-- 1 phelype phelype 21611 Mai 7 13:25 l3pdfmode.def
            -rw-rw-r-- 1 phelype phelype 22242 Mai 7 13:25 l3xdvipdfmx.def



            • expl3-code.tex is the actual expl3 code. Without that nothing works;


            • expl3-generic.tex is the generic loader, in case you are using other format other than LaTeX;


            • expl3.lua are the Lua routines in case you are using expl3 with LuaTeX;


            • expl3.sty is the loader for LaTeX (counterpart of expl3-generic.tex);

            • The remaining .def files are driver-specific definitions which are loaded depending on which engine you use.





            share|improve this answer





























              6














              You need to upload the entire l3kernel. The log says it used the local expl3.sty but used expl3-code.tex (the actual expl3 code) from /usr/share/texlive/texmf-dist/tex/latex/l3kernel/:



              (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

              ! Package expl3 Error: Mismatched expl3 files detected.


              You need to upload this file too to get it working. Better yet, upload the entire kernel (including driver files and other stuff that you might need):



              -rw-rw-r-- 1 phelype phelype 991026 Mai 7 13:25 expl3-code.tex
              -rw-rw-r-- 1 phelype phelype 2882 Mai 7 13:25 expl3-generic.tex
              -rw-rw-r-- 1 phelype phelype 3868 Mai 7 13:25 expl3.lua
              -rw-rw-r-- 1 phelype phelype 9894 Mai 7 13:25 expl3.sty
              -rw-rw-r-- 1 phelype phelype 20583 Mai 7 13:25 l3dvipdfmx.def
              -rw-rw-r-- 1 phelype phelype 37442 Mai 7 13:25 l3dvips.def
              -rw-rw-r-- 1 phelype phelype 15331 Mai 7 13:25 l3dvisvgm.def
              -rw-rw-r-- 1 phelype phelype 63076 Mai 7 13:25 l3names.def
              -rw-rw-r-- 1 phelype phelype 21611 Mai 7 13:25 l3pdfmode.def
              -rw-rw-r-- 1 phelype phelype 22242 Mai 7 13:25 l3xdvipdfmx.def



              • expl3-code.tex is the actual expl3 code. Without that nothing works;


              • expl3-generic.tex is the generic loader, in case you are using other format other than LaTeX;


              • expl3.lua are the Lua routines in case you are using expl3 with LuaTeX;


              • expl3.sty is the loader for LaTeX (counterpart of expl3-generic.tex);

              • The remaining .def files are driver-specific definitions which are loaded depending on which engine you use.





              share|improve this answer



























                6












                6








                6







                You need to upload the entire l3kernel. The log says it used the local expl3.sty but used expl3-code.tex (the actual expl3 code) from /usr/share/texlive/texmf-dist/tex/latex/l3kernel/:



                (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

                ! Package expl3 Error: Mismatched expl3 files detected.


                You need to upload this file too to get it working. Better yet, upload the entire kernel (including driver files and other stuff that you might need):



                -rw-rw-r-- 1 phelype phelype 991026 Mai 7 13:25 expl3-code.tex
                -rw-rw-r-- 1 phelype phelype 2882 Mai 7 13:25 expl3-generic.tex
                -rw-rw-r-- 1 phelype phelype 3868 Mai 7 13:25 expl3.lua
                -rw-rw-r-- 1 phelype phelype 9894 Mai 7 13:25 expl3.sty
                -rw-rw-r-- 1 phelype phelype 20583 Mai 7 13:25 l3dvipdfmx.def
                -rw-rw-r-- 1 phelype phelype 37442 Mai 7 13:25 l3dvips.def
                -rw-rw-r-- 1 phelype phelype 15331 Mai 7 13:25 l3dvisvgm.def
                -rw-rw-r-- 1 phelype phelype 63076 Mai 7 13:25 l3names.def
                -rw-rw-r-- 1 phelype phelype 21611 Mai 7 13:25 l3pdfmode.def
                -rw-rw-r-- 1 phelype phelype 22242 Mai 7 13:25 l3xdvipdfmx.def



                • expl3-code.tex is the actual expl3 code. Without that nothing works;


                • expl3-generic.tex is the generic loader, in case you are using other format other than LaTeX;


                • expl3.lua are the Lua routines in case you are using expl3 with LuaTeX;


                • expl3.sty is the loader for LaTeX (counterpart of expl3-generic.tex);

                • The remaining .def files are driver-specific definitions which are loaded depending on which engine you use.





                share|improve this answer















                You need to upload the entire l3kernel. The log says it used the local expl3.sty but used expl3-code.tex (the actual expl3 code) from /usr/share/texlive/texmf-dist/tex/latex/l3kernel/:



                (./expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3-code.tex

                ! Package expl3 Error: Mismatched expl3 files detected.


                You need to upload this file too to get it working. Better yet, upload the entire kernel (including driver files and other stuff that you might need):



                -rw-rw-r-- 1 phelype phelype 991026 Mai 7 13:25 expl3-code.tex
                -rw-rw-r-- 1 phelype phelype 2882 Mai 7 13:25 expl3-generic.tex
                -rw-rw-r-- 1 phelype phelype 3868 Mai 7 13:25 expl3.lua
                -rw-rw-r-- 1 phelype phelype 9894 Mai 7 13:25 expl3.sty
                -rw-rw-r-- 1 phelype phelype 20583 Mai 7 13:25 l3dvipdfmx.def
                -rw-rw-r-- 1 phelype phelype 37442 Mai 7 13:25 l3dvips.def
                -rw-rw-r-- 1 phelype phelype 15331 Mai 7 13:25 l3dvisvgm.def
                -rw-rw-r-- 1 phelype phelype 63076 Mai 7 13:25 l3names.def
                -rw-rw-r-- 1 phelype phelype 21611 Mai 7 13:25 l3pdfmode.def
                -rw-rw-r-- 1 phelype phelype 22242 Mai 7 13:25 l3xdvipdfmx.def



                • expl3-code.tex is the actual expl3 code. Without that nothing works;


                • expl3-generic.tex is the generic loader, in case you are using other format other than LaTeX;


                • expl3.lua are the Lua routines in case you are using expl3 with LuaTeX;


                • expl3.sty is the loader for LaTeX (counterpart of expl3-generic.tex);

                • The remaining .def files are driver-specific definitions which are loaded depending on which engine you use.






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited May 7 at 16:37

























                answered May 7 at 16:32









                Phelype OleinikPhelype Oleinik

                27.8k54793




                27.8k54793





















                    5














                    Phelype Oleinik has given an excellent answer , but I'd like to point to a couple of another method.



                    We provide a TDS-style zip file which available from CTAN. This is 'pre-extracted' and explicitly contains a tex/latex directory with all of the run-time files in it. A copy of the content of that directory will always have a full set of matching files.






                    share|improve this answer























                    • Nice :) I always go for the hard way :P

                      – Phelype Oleinik
                      May 7 at 16:43











                    • @PhelypeOleinik Well I actually make those zip files ...

                      – Joseph Wright
                      May 7 at 16:44












                    • I always thought those were automagically generated by the system .-.

                      – Phelype Oleinik
                      May 7 at 16:50






                    • 1





                      @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                      – Joseph Wright
                      May 7 at 18:07






                    • 1





                      @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                      – Phelype Oleinik
                      May 7 at 18:14
















                    5














                    Phelype Oleinik has given an excellent answer , but I'd like to point to a couple of another method.



                    We provide a TDS-style zip file which available from CTAN. This is 'pre-extracted' and explicitly contains a tex/latex directory with all of the run-time files in it. A copy of the content of that directory will always have a full set of matching files.






                    share|improve this answer























                    • Nice :) I always go for the hard way :P

                      – Phelype Oleinik
                      May 7 at 16:43











                    • @PhelypeOleinik Well I actually make those zip files ...

                      – Joseph Wright
                      May 7 at 16:44












                    • I always thought those were automagically generated by the system .-.

                      – Phelype Oleinik
                      May 7 at 16:50






                    • 1





                      @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                      – Joseph Wright
                      May 7 at 18:07






                    • 1





                      @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                      – Phelype Oleinik
                      May 7 at 18:14














                    5












                    5








                    5







                    Phelype Oleinik has given an excellent answer , but I'd like to point to a couple of another method.



                    We provide a TDS-style zip file which available from CTAN. This is 'pre-extracted' and explicitly contains a tex/latex directory with all of the run-time files in it. A copy of the content of that directory will always have a full set of matching files.






                    share|improve this answer













                    Phelype Oleinik has given an excellent answer , but I'd like to point to a couple of another method.



                    We provide a TDS-style zip file which available from CTAN. This is 'pre-extracted' and explicitly contains a tex/latex directory with all of the run-time files in it. A copy of the content of that directory will always have a full set of matching files.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 7 at 16:41









                    Joseph WrightJoseph Wright

                    207k23568897




                    207k23568897












                    • Nice :) I always go for the hard way :P

                      – Phelype Oleinik
                      May 7 at 16:43











                    • @PhelypeOleinik Well I actually make those zip files ...

                      – Joseph Wright
                      May 7 at 16:44












                    • I always thought those were automagically generated by the system .-.

                      – Phelype Oleinik
                      May 7 at 16:50






                    • 1





                      @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                      – Joseph Wright
                      May 7 at 18:07






                    • 1





                      @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                      – Phelype Oleinik
                      May 7 at 18:14


















                    • Nice :) I always go for the hard way :P

                      – Phelype Oleinik
                      May 7 at 16:43











                    • @PhelypeOleinik Well I actually make those zip files ...

                      – Joseph Wright
                      May 7 at 16:44












                    • I always thought those were automagically generated by the system .-.

                      – Phelype Oleinik
                      May 7 at 16:50






                    • 1





                      @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                      – Joseph Wright
                      May 7 at 18:07






                    • 1





                      @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                      – Phelype Oleinik
                      May 7 at 18:14

















                    Nice :) I always go for the hard way :P

                    – Phelype Oleinik
                    May 7 at 16:43





                    Nice :) I always go for the hard way :P

                    – Phelype Oleinik
                    May 7 at 16:43













                    @PhelypeOleinik Well I actually make those zip files ...

                    – Joseph Wright
                    May 7 at 16:44






                    @PhelypeOleinik Well I actually make those zip files ...

                    – Joseph Wright
                    May 7 at 16:44














                    I always thought those were automagically generated by the system .-.

                    – Phelype Oleinik
                    May 7 at 16:50





                    I always thought those were automagically generated by the system .-.

                    – Phelype Oleinik
                    May 7 at 16:50




                    1




                    1





                    @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                    – Joseph Wright
                    May 7 at 18:07





                    @PhelypeOleinik In the sense l3build, which I wrote, makes them on my PC ...

                    – Joseph Wright
                    May 7 at 18:07




                    1




                    1





                    @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                    – Phelype Oleinik
                    May 7 at 18:14






                    @tobiasBora In a local machine I'd change TEXINPUTS directly. In Overleaf you can do this.

                    – Phelype Oleinik
                    May 7 at 18:14


















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f489646%2fexpl3-and-recent-xparse-on-overleaf-no-expl3-loader-detected%23new-answer', 'question_page');

                    );

                    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







                    Popular posts from this blog

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company