先前的问题:奇怪的 bodegraph 输出
我在文件中修复了轴上的红色.sty
,但我的dB-
标签degree
仍然在轴上,而不是上方。另外,我想更改dB
标签颜色,该怎么做?我尝试修改文件.sty
,但找不到正确的参数。
答案1
不要更改.sty
文件。
bodegraph
设置一系列可用于修改事物外观的样式,例如
\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,
semilog lines/.style={blue},
semilog lines 2/.style={blue,dotted},
semilog label y/.style={above,black}]
\UnitedB
\semilog{-1}{2}{-50}{60}
\BodeAmp{-1:1.35}{\POAmpAsymp{4}{2.0}+\IntAmp{1}}
\end{scope}
\end{tikzpicture}
\end{document}