Dear all,
In my document there are many pspicture environments with \psset command inside. I want to make the settings in one pspicture environment independent from the others.
Is there a command to reset all settings to default values?
I need this command to make sure all settings in default value before making any customization for every new pspicture environment.
Thank you in advance.
regards,
Hayashi
Document Classes ⇒ How to reset pstricks for every new pspicture environment?
-
- Posts: 66
- Joined: Tue Oct 07, 2008 9:39 am
Re: How to reset pstricks for every new pspicture environment?
As far as I know, any change made via \psset is purely local to the pspicture environment inside which this command is used. The point is, of course, not to use \psset outside a pspicture environment.
Regards,
B.A.
Regards,
B.A.
-
- Posts: 66
- Joined: Tue Oct 07, 2008 9:39 am
How to reset pstricks for every new pspicture environment?
Mr. B.A.balf wrote:As far as I know, any change made via \psset is purely local to the pspicture environment inside which this command is used. The point is, of course, not to use \psset outside a pspicture environment.
Regards,
B.A.
Thanks for replying.
I will do your suggestion.
regards,
Hayashi
-
- Posts: 351
- Joined: Sat Aug 02, 2008 8:47 am
How to reset pstricks for every new pspicture environment?
Code: Select all
\bgroup% holds everything local
\psset{...}
\begin{pspicture}
...
\end{pspicture}
\egroup
-
- Posts: 66
- Joined: Tue Oct 07, 2008 9:39 am
Re: How to reset pstricks for every new pspicture environment?
Many thanks to Herbert
Hayashi

Hayashi