I need to draw basic signal processing block diagrams in my paper, and after googling found that the package pst-sigsys would be able to do this. Since this package was already installed, I went ahead and tried some basic examples given in the pst-sigsys documentation. So far I have failed miserably.
The tex file I made to test pst-sigsys is as follows (test2.tex):
Code: Select all
\documentclass[11pt]{amsart}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{pst-sigsys}
\title{Brief Article}
\author{The Author}
\begin{document}
\maketitle
\section{}
\begin{figure}[ht]
\begin{pspicture}[showgrid=true](-2,-1)(2,1)
\psaxeslabels(0,0)(-2,-1)(2,1){$\Re$}{$\Im$}
\end{pspicture}
\end{figure}
\end{document}
Code: Select all
./test2.tex:14: Undefined control sequence.
<recently read> \c@lor@to@ps
l.14 \begin{pspicture}[showgrid=true](-2,-1)(2,1)
? r
OK, entering \nonstopmode...
./test2.tex:14: Undefined control sequence.
\XC@usec@lor ...string \color@ #1#2\endcsname \@@
\fi \space
l.14 \begin{pspicture}[showgrid=true](-2,-1)(2,1)
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
./test2.tex:14: Undefined control sequence.
<recently read> \c@lor@to@ps
Also, if any of you know any other package for drawing signal processing blocks, please let me know.