Trying to draw a graph, and PStrick looked good. But, I have ran into a problem.
I've installed pstricks via MikTeX package-utillity, and trying to generate a graph with this example-code from the PStricks webpage:
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage{pstricks}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(-0.25,-0.25)(8,8)
\psgrid[gridlabels=0pt,subgriddiv=2,%
gridcolor=lightgray,subgridcolor=lightgray]
\psaxes[dx=1,Dx=2]{->}(0,0)(8,8)
\end{pspicture}
\end{document}
Thanks in advance!