I recently updated my TexLive distribution to the 2023 version, but in doing so
I've started receiving a number of warnings from my tikzposter:
\documentclass{tikzposter}
%\font\nullfont=cmr10
\title{TikZTests}%
% \author{John Doe}%
% \institute{World Government}%
\begin{document}
\maketitle
\end{document}
While the compilation works:
latexmk -C tikzposter.tex && latexmk tikzposter.tex
There are a number of annoying warnings about missing characters:
Output written on tikzposter.pdf (1 page, 39473 bytes).
Transcript written on tikzposter.log.
Latexmk: Getting log file 'tikzposter.log'
Latexmk: Examining 'tikzposter.fls'
Latexmk: Examining 'tikzposter.log'
Latexmk: Log file says output to 'tikzposter.pdf'
Latexmk: Summary of warnings from last run of *latex:
=====Latex reported missing or unavailable character(s).
=====See log file for details.
Latexmk: ====List of undefined refs and citations:
Missing character: There is no 1 in font nullfont!
Missing character: There is no = in font nullfont!
Missing character: There is no 1 in font nullfont!
Latexmk: All targets () are up-to-date
Anyone know where these come from? They only show up if the \maketitle macro
is used, and is there some way to get rid of these warnings?
\maketitle. Additionally,\maketitlecannot be put inside a\node{}, making the answer to their question inapplicable to this one. – Xaldew Apr 20 '23 at 11:29\documentclass{tikzposter} \title{TikZTests} \makeatletter \define@key{title}{titletextscale}{} \makeatother \begin{document} \maketitle \end{document}– samcarter_is_at_topanswers.xyz Apr 20 '23 at 11:46