Replies: 5 comments 4 replies
-
Hello!
I think the right fix is to use fonts from Tectonic bundles, as that will make your document reproducible and make the warnings disappear. Which brings us to:
Tectonic can download any file from CTAN. Or more precisely, Tectonic has a concept of bundles which are snapshots of the yearly releases of TeX Live (like 2022, 2023, 2024), which include almost everything on CTAN (only excluding some packages with licensing issues). This includes fonts as well. However, with fonts it's a bit more tricky as there are actually two ways it is possible to ask "TeX" for a font: by font file name (e.g. I think using font file names is a better approach for more reasons other than the fact that font names are not supported well in Tectonic. I have an example and more details in #965 (comment). The issue about not being able to find fonts by font names in bundles is #9.
In case of
It actually seems that the If you have more questions, please include a MWE. MWE gives better chance of reproducing problems and also gives a chance to suggest a fix for your particular use case. In this case for example, I don't know what exact fonts you are trying to use, and thus don't know if you need to adjust the way you use the |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply \documentclass{article}
\usepackage{fontspec}
\usepackage[margin=0.5in]{geometry}
\newfontfamily\mono{FreeMono.otf}
\setlength{\parindent}{0ex}
\title{My Title}
\begin{document}
\section{Testing}
Hello.
\mono This is in Monospace. The font I tried |
Beta Was this translation helpful? Give feedback.
-
Another problem I ran into. I tried to run pgfplots with the externalize feature: \documentclass{article}
\usepackage{pgfplots}
\usepackage[margin=0.5in]{geometry}
\pgfplotsset{width=10cm,compat=1.18}
\usepgfplotslibrary{external}
\tikzexternalize
\title{My Title}
\begin{document}
\section{Testing}
\begin{tikzpicture}
\draw (0,0) -- (1,1);
\end{tikzpicture} I get the error
|
Beta Was this translation helpful? Give feedback.
-
I included the font in my source as stated in #1095 and sure enough it worked!
|
Beta Was this translation helpful? Give feedback.
-
This was a fruitful discussion (atleast for me 😁) Now i can switch over to tectonic fulltime I think. Thank you for your help guys 🙏 |
Beta Was this translation helpful? Give feedback.
-
Hello,
I tried messing around with tectonic and here are the things I have questions about.
\newfontfamily{font}
I can access font installed on my system. It warns that using them will make the build system not reproducible. How do I fix this?pdfx
to comply withpdf/a-3u
. However, when I usepdfx
with tectonic it gives me the error thaterror: pdfx.sty:1285: Package pdfx Error: CreationDate is not properly supported; PDF validation may fail..
How do I fix this?Beta Was this translation helpful? Give feedback.
All reactions