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
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
add a comment |
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
add a comment |
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
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
installing expl3 xparse
asked May 7 at 16:19
tobiasBoratobiasBora
1,377316
1,377316
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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 actualexpl3
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 usingexpl3
with LuaTeX;expl3.sty
is the loader for LaTeX (counterpart ofexpl3-generic.tex
);- The remaining
.def
files are driver-specific definitions which are loaded depending on which engine you use.
add a comment |
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.
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 sensel3build
, which I wrote, makes them on my PC ...
– Joseph Wright♦
May 7 at 18:07
1
@tobiasBora In a local machine I'd changeTEXINPUTS
directly. In Overleaf you can do this.
– Phelype Oleinik
May 7 at 18:14
|
show 2 more comments
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%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
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 actualexpl3
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 usingexpl3
with LuaTeX;expl3.sty
is the loader for LaTeX (counterpart ofexpl3-generic.tex
);- The remaining
.def
files are driver-specific definitions which are loaded depending on which engine you use.
add a comment |
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 actualexpl3
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 usingexpl3
with LuaTeX;expl3.sty
is the loader for LaTeX (counterpart ofexpl3-generic.tex
);- The remaining
.def
files are driver-specific definitions which are loaded depending on which engine you use.
add a comment |
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 actualexpl3
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 usingexpl3
with LuaTeX;expl3.sty
is the loader for LaTeX (counterpart ofexpl3-generic.tex
);- The remaining
.def
files are driver-specific definitions which are loaded depending on which engine you use.
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 actualexpl3
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 usingexpl3
with LuaTeX;expl3.sty
is the loader for LaTeX (counterpart ofexpl3-generic.tex
);- The remaining
.def
files are driver-specific definitions which are loaded depending on which engine you use.
edited May 7 at 16:37
answered May 7 at 16:32
Phelype OleinikPhelype Oleinik
27.8k54793
27.8k54793
add a comment |
add a comment |
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.
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 sensel3build
, which I wrote, makes them on my PC ...
– Joseph Wright♦
May 7 at 18:07
1
@tobiasBora In a local machine I'd changeTEXINPUTS
directly. In Overleaf you can do this.
– Phelype Oleinik
May 7 at 18:14
|
show 2 more comments
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.
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 sensel3build
, which I wrote, makes them on my PC ...
– Joseph Wright♦
May 7 at 18:07
1
@tobiasBora In a local machine I'd changeTEXINPUTS
directly. In Overleaf you can do this.
– Phelype Oleinik
May 7 at 18:14
|
show 2 more comments
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.
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.
answered May 7 at 16:41
Joseph Wright♦Joseph 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 sensel3build
, which I wrote, makes them on my PC ...
– Joseph Wright♦
May 7 at 18:07
1
@tobiasBora In a local machine I'd changeTEXINPUTS
directly. In Overleaf you can do this.
– Phelype Oleinik
May 7 at 18:14
|
show 2 more comments
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 sensel3build
, which I wrote, makes them on my PC ...
– Joseph Wright♦
May 7 at 18:07
1
@tobiasBora In a local machine I'd changeTEXINPUTS
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
|
show 2 more comments
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%2f489646%2fexpl3-and-recent-xparse-on-overleaf-no-expl3-loader-detected%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