Hi,
ich möchte gerne Gnuplot Diagramme (Tikz Terminal) in meine Tex File einbinden, an sich funktioniert das auch, nur wenn ich einen Legendeneintrag tiefstellen möchte z.B. "Test1_1" erhalte ich kein Diagramm mehr.
Gnuplot File (nicht funktionstüchtig)
set encoding iso_8859_1
set term lua tikz color size 14cm,9cm
set output "test.tex"
set xr [0:2*pi]
plot sin(x) with lp dt 1 pt 1 title "test1_1",\
cos(x) with lp dt 2 pt 2 title "test1_2"
exit
Mit dieser funktioniert es wunderbar, nur leider nicht mit tiefgestelltem Index.
Gnuplot File (funktionstüchtig)
set encoding iso_8859_1
set term lua tikz color size 14cm,9cm
set output "test.tex"
set xr [0:2*pi]
plot sin(x) with lp dt 1 pt 1 title "test11",\
cos(x) with lp dt 2 pt 2 title "test12"
exit
Tex-File
documentclass{article}
\usepackage{gnuplot-lua-tikz}
\begin{document}
\begin{figure}
\input{Abbildungen/test}
\caption{TESTIMAGE}
\end{figure}
\end{document}
Jemand eine Idee?