[Matplotlib-devel] v1.5.0rc2

Jouni K. Seppänen jks at iki.fi
Mon Oct 5 06:32:01 CEST 2015


Sandro Tosi <morph at debian.org> writes:

> in the meantime a new error came up, while building latex doc:
>
> ```
> Adding blank page after the table of contents.
> [1] [2] [1] [2]
> Chapter 1.
> (/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txtt.fd)
>
> ! Package inputenc Error: Unicode char \u8:́ not set up for use with LaTeX.
>
> See the inputenc package documentation for explanation.
> Type  H <return>  for immediate help.
>  ...
>
> l.163 Sté
>            fan van der Walt's talk from SciPy2015

The letter é in the source file is encoded using U+0301 COMBINING ACUTE
ACCENT (UTF-8 bytes cc 81):

$ git grep 'van der W' | hexdump -C
00000000  73 74 79 6c 65 5f 63 68  61 6e 67 65 73 2e 72 73  |style_changes.rs|
00000010  74 3a 53 74 65 cc 81 66  61 6e 20 76 61 6e 20 64  |t:Ste..fan van d|
00000020  65 72 20 57 61 6c 74 27  73 20 74 61 6c 6b 20 66  |er Walt's talk f|
00000030  72 6f 6d 20 53 63 69 50  79 32 30 31 35 0a        |rom SciPy2015.|
0000003e

LaTeX would probably understand U+00E9 LATIN SMALL LETTER E WITH ACUTE
better. I'll make a PR.

-- 
Jouni K. Seppänen
http://www.iki.fi/jks



More information about the Matplotlib-devel mailing list