这个 pstricks 代码有什么问题?

这个 pstricks 代码有什么问题?

我是一个新手所以答案可能很简单。

我有下面的代码,它给我两个问题:

  1. x 轴和 y 轴标签位于随机位置?

  2. 提供的坐标未在正确的坐标处呈现。

更正:

  1. 提供的坐标未在错误的坐标处呈现。

非常感谢任何建议/帮助/提示。

谢谢。

    \psset{xAxisLabel=LABELX,yAxisLabel=LABELY, xAxisLabelPos={c,-0.8},yAxisLabelPos={-0.06,c},xunit=40cm,yunit=0.1cm}
    \begin{pspicture}(0,70)(0.0,10.0)
    \psgrid[subgriddiv=1, gridcolor=white,griddots=10,gridlabels=0pt]
    \psaxes[Dx=0.05, Dy=10, labelFontSize=\scriptscriptstyle](0,0)(0,0)(0.251,100.0) 
    \begin{psgraph}[](0.25,0.9){5cm}{1cm}
    \psline[linewidth=1.0pt, showpoints=true, dotstyle=o, fillcolor=cyan](0.240608234,0)(0.209576383,1)(0.206539843,2)(0.190312769,3)
    \end{psgraph}
    \end{pspicture}

答案1

\documentclass[11pt]{article}
\usepackage{pst-all}
\begin{document}
    \psset{xAxisLabel=Similarity score,yAxisLabel=Number correct, xAxisLabelPos={c,-10},yAxisLabelPos={-0.03,c},xunit=40cm,yunit=1cm}
    \begin{psgraph}[Dx=0.1,Dy=10](0,0)(0,0)(0.25,100){10cm}{10cm}
    \psline[linewidth=1.0pt](0.240608234,0)(0.209576383,1)(0.206539843,2)
    \end{psgraph}
\end{document}

答案2

答案如下:

\documentclass[11pt]{article}
\usepackage{pst-all}
\usepackage{pst-plot,filecontents}
\begin{document}
\psset{xAxisLabel=Similarity score,yAxisLabel=Number correct, xAxisLabelPos={c,-10},yAxisLabelPos={-0.06,c},xunit=40cm,yunit=1cm}
\begin{pspicture}
\psgrid[subgriddiv=1, gridcolor=white,griddots=10,gridlabels=0pt]
\begin{psgraph}[Dx=0.1,Dy=10](0,0)(0,0)(0.25,100){10cm}{10cm}
\psline[linewidth=1.0pt, showpoints=false, dotstyle=o, fillcolor=cyan](0.240608234,0)(0.209576383,1)(0.206539843,2)
\end{psgraph}
\end{pspicture}
\end{document}

相关内容