Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

How can I make header cells italic using pgfplotstable?

I load several csv files and add their content to an object using \pgfplotstablecreatecol. Then I use the following code to generate the table out that object: (note: the \expheader iterates over the files and generate a multicolumn header for each of them)

\pgfplotstabletypeset[
every head row/.style={
    postproc cell content/.style={/pgfplots/table/@cell content/.add={\it}{}},
    before row=\hline
    \multicolumn{5}{ | c ||}{\scriptsize{\bf Controller}}\expheader
    \\ \hline,
    after row=\hline,
}]

I tried also to use:

\pgfplotstabletypeset[
every head row/.style={
        postproc cell content/.append style={
           /pgfplots/table/@cell content/.add={\it}{},
   ...
share|improve this question
Hi Alessio, welcome to TeX.sx! Could you provide a complete minimal example document? – Jake Aug 28 '12 at 9:39

closed as too localized by percusse, Marco Daniel, lockstep, Claudio Fiandrino, Torbjørn T. Sep 22 '12 at 15:57

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.