You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got a warning when I, with the latest TeX Live, ran
$ cluttex --engine=pdflatex
against a LaTeX file that has:
\usepackage{xparse}
The error message said
[DIAG] The driver option for expl3 is missing or wrong.
[DIAG] Consider setting 'driver=pdfmode' option when loading expl3.
However this warning is no longer valid since l3backend has received its updates and we have l3backend-pdftex.def, l3backend-luatex.def, and l3backend-xetex.def instead of l3backend-pdfmode.def and l3backend-xdvipdfmx.def. A pull request that will fix this will follow.
The text was updated successfully, but these errors were encountered:
gksato
changed the title
Expected backend for expl3 in no longer correct for XeTeX, PDFTeX, LuaTeX
Expected backends for expl3 are no longer correct for XeTeX, PDFTeX, LuaTeX
Nov 3, 2021
gksato
added a commit
to gksato/cluttex
that referenced
this issue
Nov 3, 2021
l3backend, i.e. expl3's driver-specific backend, got renamed as
l3backend-pdfmode -> l3backend-pdftex, l3backend-luatex
l3backend-xdvipdfmx -> l3backend-xetex.
This caused cluttex to unnecessarily warn user for mismatched driver
setup for expl3, as reported in
minoki#5.
With this commit, in order to fix this, cluttex will
additionally detect the load of l3backend-pdftex, luatex and xetex.
I got a warning when I, with the latest TeX Live, ran
against a LaTeX file that has:
The error message said
However this warning is no longer valid since l3backend has received its updates and we have
l3backend-pdftex.def
,l3backend-luatex.def
, andl3backend-xetex.def
instead ofl3backend-pdfmode.def
andl3backend-xdvipdfmx.def
. A pull request that will fix this will follow.最新のTeX Live で
expl3
を読み込む LaTex file をclpdflatex
すると expl3 のドライバミスマッチエラーがでます.これはl3backend
のドライバ名がpdfmode
->pdftex
,luatex
およびxdvipdfmx
->xetex
と変わったためだと思われます.PR投げて修正しますが,Luaは不慣れなのでお助けいただけるとありがたいです.The text was updated successfully, but these errors were encountered: