Wenn ich eine Tikz-Node in eine pgfplotstable setze, wird diese natürlich nicht an den restlichen Inhalt angepasst. Wie könnte ich das erreichen? MWE: Öffne in Overleaf
\documentclass[margin=5mm, varwidth]{standalone} \usepackage{pgfplotstable, amsmath} \pgfplotsset{compat=1.13} \pgfplotstableset{header=false, every head row/.style={output empty row}, string type, } \begin{document} \pgfplotstabletypeset[]{ 1 {\tikz[red, baseline=0em]{\node[]{node};}} 3 4 } \end{document} gefragt 06 Okt '18, 12:32 cis |
Der Knoten wird so gesetzt, dass sein Mittelpunkt bei Öffne in Overleaf
\documentclass[margin=5mm, varwidth]{standalone} \usepackage{pgfplotstable, amsmath} \pgfplotsset{compat=1.13} \pgfplotstableset{header=false, every head row/.style={output empty row}, string type, } \begin{document} \pgfplotstabletypeset[]{ 1 {\tikz[red, baseline=(X.base)]{\node[inner sep=0pt] (X) {node};}} 3 4 } \end{document} Um dieselbe Spationierung wie bei normalem Text zu erhalten, habe ich auch noch beantwortet 18 Feb '19, 07:55 Henri |