Hi,
I seek help to get PStricks to work in Prosper, as I
manage to get it working in a "normal" Latex class, but
not for prosper. In the normal file it works as I
expect according to manual and dimensions are correct.
In prosper the following is problem:
1: It gives unknown command on many \ps* commands in
prosper.
2: I have severe problems to translate away from the
current point in a
predictable manner.
3: The scaling is wrong, both using default 1cm unit
and also using the
\psset{unit=1cm} which seems having no effect in
prosper.
I hope someone can help me to solve this so I can make
full use of the very nice prosper. Thanks in advance.
kind regards,
Finn Ankersen
European Space Agency Finn.Ankersen@esa.int
Testfiles:
% THIS WORKS AS EXPECTED !!!!!!
\documentclass[a4paper]{article}
\RequirePackage{times}
\usepackage{pstricks,pst-node,pst-text,pst-3d}
\begin{document}
\section{First Heading}
\pcline{<->}(0,0)(4,2)
\psgrid(0,0)(3,2)
\psline[liftpen=2](0,0)(5,5)
\pscircle[fillstyle=solid,fillcolor=white](0,-4){0.1}
\end{document}
% THIS COMPILE BUT WITH WRONG SCALING.
% IF I INCLUDE \PSGRID IT FAILS AND ALSO IF I DELETE
% PSPICTURE, THOUGH IT WORKS ABOVE ?????
\documentclass[final,slideBW,troispoints,pdf,distiller]{prosper}
\usepackage{pstricks,pst-node,pst-text,pst-3d}
\title{Guidance, Navigation and Control Activities}
\author{Finn Ankersen}
\email{finn.ankersen@esa.int}
\institution{European Space Agency}
\slideCaption{Finn Ankersen}
\begin{document}
\maketitle
\begin{slide}{Deployment}
\pcline{<->}(0,0)(4,2)
%\psgrid(0,0)(3,2)
\begin{pspicture}(1,7)(10,7)
\psline[liftpen=2](0,0)(5,5)
\pscircle[fillstyle=solid,fillcolor=white](0,0){0.1}
\end{pspicture}
\end{slide}
\end{document}