Say we plotted in Gnuplot using terminal tikz resulting in output tikz.tex . In our main.tex we
\include{tikz}
Now that messes up everything because the picture is way too large for our beamer document.
How can one scale down the tikzpicure without manually setting (e.g.) scale=.5 in tikz.tex? The reason I want to avoid manual scaling is that I have many tikz.texs and that they are not final yet.
gnuplotcode? From thegnuplotdocs it looks like you have the option to define the size of the generated plot, e.g.set size 8cm,4cm– Torbjørn T. Mar 17 '16 at 13:03sizeor thescaleoption of the terminal solves my problem. If you put that as an answer, I accept it. Thanks! – rehctawrats Mar 17 '16 at 13:15