I have studied that problem on Internet and I still cannot the solution to the following warning. In .log file I get 20 times
Missing character: There is no p in font nullfont!
Missing character: There is no t in font nullfont!
and I obviously don't use "pt" anywhere. Is it possible that there is a problem in arrows.meta? MWE:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\begin{document}
\begin{tikzpicture}
\draw[line width=7,-{Triangle[angle=60:1 1.5]},postaction={draw,white,line width=6,shorten <=0.5,shorten >=0.9}] (6.36,9.5) -- (5.1,9.5);
\end{tikzpicture}
\end{document}
ptin the PGF code. Something like\somedimen=#1ptwhere#1was expected to be a number without units but had units so theptis output into the document. However inside atikzpicturethe font is set to\nullfontresulting in these warnings. – Mark Wibrow Dec 15 '14 at 09:34arrows.metalibrary as without the arrow specification there are no messages. – Mark Wibrow Dec 15 '14 at 10:39\draw[-{Stealth[]}] (0,0) -- (0,1);- theTriangle[]is just a customized toStealth. Replacing withCircleremoves the warnings. – Andrew Swann Dec 15 '14 at 10:53