I’ve tried to make a bodegraph with the bodegraph package and gnuplot. I’m using TexLive and TexStudio on a Windows 10 computer.
I get red axes and no graph, only the axes.
documentclass{article}
usepackage{tikz}
usepackage{bodegraph}
begin{document}
begin{tikzpicture}[
gnuplot def/.append style={prefix={}}, % Fixed the issue (prefix was 'gnuplot/jobname/' before)
]
begin{scope}[xscale=10/3,yscale=10/110]
UnitedB
semilog{-1}{2}{-50}{60}
BodeAmp{-1:1.35}{POAmpAsymp{4}{2.0}+IntAmp{1}}
end{scope}
end{tikzpicture}
end{document}