|
From: Ethan A M. <me...@uw...> - 2022-08-26 04:49:31
|
On Thursday, 25 August 2022 21:06:33 PDT Tatsuro MATSUOKA via gnuplot-beta wrote: > I have a situation to make gnuplot.pdf on windows (MinGW-w64) with MiKTeX 22.7 > > ************************************************************************************************. > : > : > LaTeX Warning: Reference `set label' on page 70 undefined on input line 6036. > > > LaTeX Warning: Reference `hypertext' on page 70 undefined on input line 6059. > > > > pdfTeX warning: pdflatex.exe (file ./figure_labels2.pdf): PDF inclusion: found > PDF version <1.7>, but at most version <1.5> allowed > > ! LaTeX Error: Unicode character ∙ (U+2219) > not set up for use with LaTeX. U+2219 is \bullet in LaTeX. Perhaps the unicode support package included with MiKTeX 22.7 is incomplete? The file .../texmf-dist/tex/generic/unicode-data/UnicodeData.txt should contain a line 2219;BULLET OPERATOR;Sm;0;ON;;;;;N;;;;; As a work-around, this thread https://tex.stackexchange.com/questions/598469/package-inputenc-error-unicode-character-%E2%88%99-u2219 suggests it may be possible to say \usepackage{newunicodechar} \newunicodechar{^^^^2219}{\cdot} but I think it would be better to figure out what is wrong with the MiKTeX installation. Ethan |