Closed emvalbuena closed 2 weeks ago
Hey @KikeM,
Thank you for opening this issue, i was able to reproduce the error and here are my findings:
xelatex
instead of pdflatex
as a compiler, you have multiple options to achieve this.
dexliveonfly -cxelatex mwe.tex
dex xelatex mwe.tex
➜ dex git:(main) ✗ dexliveonfly -cxelatex mwe.tex
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platf
orm was requested
This is XeTeX, Version 3.141592653-2.6-0.999996 (TeX Live 2024) (preloaded format=xelatex)
restricted \write18 enabled.
entering extended mode
(./mwe.tex
LaTeX2e <2024-06-01> patch level 2
L3 programming layer <2024-08-30>
(/opt/texlive/texdir/texmf-dist/tex/latex/base/article.cls
Document Class: article 2024/02/08 v1.4n Standard LaTeX document class
(/opt/texlive/texdir/texmf-dist/tex/latex/base/size10.clo))
(/opt/texlive/texdir/texmf-dist/tex/latex/l3backend/l3backend-xetex.def)
(./mwe.aux) (/opt/texlive/texdir/texmf-dist/tex/latex/base/ts1cmr.fd)
[1] (./mwe.aux) )
Output written on mwe.pdf (1 page).
SyncTeX written on mwe.synctex.gz.
Transcript written on mwe.log.
if this solves your issue, please close the issue ;-)
Description Compiling a LaTeX document with an
itemize
environment using the provided Docker image results in a font-related error. However, the document compiles without issues when I use theenumerate
environment instead.Steps to Reproduce
mwe.tex
with the following LaTeX code:Expected Behavior The document should compile to a PDF without any errors.
Actual Behavior The compilation process fails with the following error:
Environment
mmngreco/dex:latest
14.4.1
Additional Context The same LaTeX file compiles without error when the
itemize
environment is replaced with anenumerate
environment.