I'm using pgfplotstable to render CSV-files as tables in my document:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pgfplotstable}
\begin{document}
ÄÖÜ!
\pgfplotstabletypeset[col sep=comma, header=has colnames, verb string type]{test.csv}
\end{document}
That's working perfectly, until there are special characters in the external file. They cause errors in the first line, and are simply ignored in the following lines.
Here's my test.csv, which is encoded as UTF-8:
h1,öüä
d1,äöü
How can I make sure these characters render correctly?
\usepackage[T1]{fontenc}and usestring typeinstead ofverb string type– Jake Aug 08 '13 at 14:57fontencseems to have additional benefits, I'll look into using that. – fefrei Aug 08 '13 at 15:08verb. Any way to make it work with that? – fefrei Aug 08 '13 at 15:11verb? – Jake Aug 08 '13 at 15:15_, probably some other reserved characters. – fefrei Aug 08 '13 at 15:18