我尝试在图表中使用不同的线条样式,但无法编译虚线或点划线样式。有人遇到过同样的问题吗
\documentclass[border=2mm]{standalone}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[dvipsnames,usenames]{xcolor}
\usepackage[color]{makeplot}
\usepackage{amsmath}
\usepackage{tikz}
\definecolor{grisclaro}{gray}{0.95}
\begin{document}
\begin{makeplot}
[startX=1.3, endX=4.01, startY=-100, endY=0.0, Dx=0.3, Dy=10,%
width=100, heightFactor=0.75,%
linewidth=1pt, tickstyle=top, ticklinestyle=dashed, tickcolor=black]%
{\large Scattering Parameters (dB)}{\large $f$ (GHz)}
%Para recortar la gráfica
\psclip{\psframe[linecolor=black,linewidth=0.1pt](1.3,-100)(4.01,0)}
\plotFileA[linewidth=1pt,linecolor=Blue,plotNo=1,plotNoMax=4, linestyle=solid]{100mhZ_bpf.dat}
\plotFileB[linewidth=1pt,linecolor=Red,plotNo=2,plotNoMax=4, linestyle=dotted]{100mhZ_bpf.dat}
\plotFileC[linewidth=1pt,linecolor=MidnightBlue,plotNo=3,plotNoMax=4,linestyle=dashed ]{100mhZ_bpf.dat}
\plotFileD[linewidth=1pt,linecolor=Magenta,plotNo=4,plotNoMax=4, linestyle=dashdotted]{100mhZ_bpf.dat}
%Fin del recortado
\endpsclip
\end{makeplot}
\end{document}