Where should we use pstVerb?How to remove PSTricks dictionary or library codes in an EPS file produced by...
How bad is a Computer Science course that doesn't teach Design Patterns?
Why does a single AND gate need 60 transistors?
Words of Worship and Nefarious Lich
Why is it that Bernie Sanders is always called a "socialist"?
Sets that are both Sum-free and Product-free
Why is Acetic acid (pKa = 4.76) stronger than carbonic acid (pKa = 6.36)?
Is this Article About Possible Mirrored Universe Junk Science?
How many diagrams is too much in a research article?
Can you help me solve this algebra problem?
Why can't I set the 'prototype' of a function created using 'bind'?
Are all power cords made equal?
Why do single electrical receptacles exist?
Budget brands for gears in India
How can I differentiate duration vs starting time
Including proofs of known theorems in master's thesis
Expression for "unconsciously using words (or accents) used by a person you often talk with or listen to"?
If we can’t finish all tasks, does this mean we are doing Scrum wrong?
How do I avoid the "chosen hero" feeling?
Third wheel character
Will the duration of traveling to Ceres using the same tech developed for going to Mars be proportional to the distance to go to Mars or not?
How can I give a Ranger advantage on a check due to Favored Enemy without spoiling the story for the player?
two subject complements in passive form?
Is Screenshot Time-tracking Common?
Do the speed limit reductions due to pollution also apply to electric cars in France?
Where should we use pstVerb?
How to remove PSTricks dictionary or library codes in an EPS file produced by dvips?How to use a pstVerb constant as the angle arguments of uput?How to pass a constant defined in pstVerb as the most right argument of rput?How to define a new RPN operator with pstVerb to convert pt to the active unit?When should we use rput, nput, and uput?Bug report pst-3dplot, where should I submit it?Moving the common angle to pstVerb produces incorrect resultwhere can I find the detailed description of how to use pstVerb and tx@addDictWhere is the pstverb command documented?LaTeX Trellis Diagrams for STBCs
I have some constants as well as macros to be defined for PostScript.
pstVerb
{
/a {3} def
/b {2} def
}
There are three possible places:
- In the preamble (A).
- In
document
but outsidepspicture
(B). - In
pspicture
(C).
documentclass[border=15pt,pstricks]{standalone}
% A
begin{document}
% B
begin{pspicture}[showgrid](-4,-4)(4,4)
% C
psellipse(0,0)(!a b)
end{pspicture}
end{document}
For option A and B, I got unnecessary white spaces as follows.
But for option C,
documentclass[border=15pt,pstricks]{standalone}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
pstVerb
{ /a {3} def
/b {2} def
}%
psellipse(0,0)(!a b)
end{pspicture}
end{document}
the white spaces no longer exit.
Question
Where should we use pstVerb
?
pstricks
add a comment |
I have some constants as well as macros to be defined for PostScript.
pstVerb
{
/a {3} def
/b {2} def
}
There are three possible places:
- In the preamble (A).
- In
document
but outsidepspicture
(B). - In
pspicture
(C).
documentclass[border=15pt,pstricks]{standalone}
% A
begin{document}
% B
begin{pspicture}[showgrid](-4,-4)(4,4)
% C
psellipse(0,0)(!a b)
end{pspicture}
end{document}
For option A and B, I got unnecessary white spaces as follows.
But for option C,
documentclass[border=15pt,pstricks]{standalone}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
pstVerb
{ /a {3} def
/b {2} def
}%
psellipse(0,0)(!a b)
end{pspicture}
end{document}
the white spaces no longer exit.
Question
Where should we use pstVerb
?
pstricks
add a comment |
I have some constants as well as macros to be defined for PostScript.
pstVerb
{
/a {3} def
/b {2} def
}
There are three possible places:
- In the preamble (A).
- In
document
but outsidepspicture
(B). - In
pspicture
(C).
documentclass[border=15pt,pstricks]{standalone}
% A
begin{document}
% B
begin{pspicture}[showgrid](-4,-4)(4,4)
% C
psellipse(0,0)(!a b)
end{pspicture}
end{document}
For option A and B, I got unnecessary white spaces as follows.
But for option C,
documentclass[border=15pt,pstricks]{standalone}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
pstVerb
{ /a {3} def
/b {2} def
}%
psellipse(0,0)(!a b)
end{pspicture}
end{document}
the white spaces no longer exit.
Question
Where should we use pstVerb
?
pstricks
I have some constants as well as macros to be defined for PostScript.
pstVerb
{
/a {3} def
/b {2} def
}
There are three possible places:
- In the preamble (A).
- In
document
but outsidepspicture
(B). - In
pspicture
(C).
documentclass[border=15pt,pstricks]{standalone}
% A
begin{document}
% B
begin{pspicture}[showgrid](-4,-4)(4,4)
% C
psellipse(0,0)(!a b)
end{pspicture}
end{document}
For option A and B, I got unnecessary white spaces as follows.
But for option C,
documentclass[border=15pt,pstricks]{standalone}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
pstVerb
{ /a {3} def
/b {2} def
}%
psellipse(0,0)(!a b)
end{pspicture}
end{document}
the white spaces no longer exit.
Question
Where should we use pstVerb
?
pstricks
pstricks
edited 5 hours ago
Artificial Stupidity
5,41211041
5,41211041
asked 6 hours ago
chishimutojichishimutoji
8061320
8061320
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can it use where you want, but you have to pay attention that you do not
overwrite existing definitions. /a
and /b
are already defined in several ways
for internal functions.
Use always variables with at least two letters or use an own dictionary:
documentclass[border=15pt,pstricks]{standalone}
pstVerb{
/aA 3 def
/bB 2 def
}
pstVerb{
/myDict 2 dict def % define a local dictionary with two variables
myDict begin
/a 3 def
/b 2 def
end
}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
psellipse(0,0)(! myDict begin a b end )
psellipse(0,1)(! aA bB )
end{pspicture}
end{document}
For C it works braces pspicture
holds all local.
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476335%2fwhere-should-we-use-pstverb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can it use where you want, but you have to pay attention that you do not
overwrite existing definitions. /a
and /b
are already defined in several ways
for internal functions.
Use always variables with at least two letters or use an own dictionary:
documentclass[border=15pt,pstricks]{standalone}
pstVerb{
/aA 3 def
/bB 2 def
}
pstVerb{
/myDict 2 dict def % define a local dictionary with two variables
myDict begin
/a 3 def
/b 2 def
end
}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
psellipse(0,0)(! myDict begin a b end )
psellipse(0,1)(! aA bB )
end{pspicture}
end{document}
For C it works braces pspicture
holds all local.
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
add a comment |
You can it use where you want, but you have to pay attention that you do not
overwrite existing definitions. /a
and /b
are already defined in several ways
for internal functions.
Use always variables with at least two letters or use an own dictionary:
documentclass[border=15pt,pstricks]{standalone}
pstVerb{
/aA 3 def
/bB 2 def
}
pstVerb{
/myDict 2 dict def % define a local dictionary with two variables
myDict begin
/a 3 def
/b 2 def
end
}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
psellipse(0,0)(! myDict begin a b end )
psellipse(0,1)(! aA bB )
end{pspicture}
end{document}
For C it works braces pspicture
holds all local.
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
add a comment |
You can it use where you want, but you have to pay attention that you do not
overwrite existing definitions. /a
and /b
are already defined in several ways
for internal functions.
Use always variables with at least two letters or use an own dictionary:
documentclass[border=15pt,pstricks]{standalone}
pstVerb{
/aA 3 def
/bB 2 def
}
pstVerb{
/myDict 2 dict def % define a local dictionary with two variables
myDict begin
/a 3 def
/b 2 def
end
}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
psellipse(0,0)(! myDict begin a b end )
psellipse(0,1)(! aA bB )
end{pspicture}
end{document}
For C it works braces pspicture
holds all local.
You can it use where you want, but you have to pay attention that you do not
overwrite existing definitions. /a
and /b
are already defined in several ways
for internal functions.
Use always variables with at least two letters or use an own dictionary:
documentclass[border=15pt,pstricks]{standalone}
pstVerb{
/aA 3 def
/bB 2 def
}
pstVerb{
/myDict 2 dict def % define a local dictionary with two variables
myDict begin
/a 3 def
/b 2 def
end
}
begin{document}
begin{pspicture}[showgrid](-4,-4)(4,4)
psellipse(0,0)(! myDict begin a b end )
psellipse(0,1)(! aA bB )
end{pspicture}
end{document}
For C it works braces pspicture
holds all local.
edited 41 mins ago
answered 3 hours ago
HerbertHerbert
274k24417730
274k24417730
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
add a comment |
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
I was using PSTricks for several years to create many graphics. However, the possibility of a local dictionary is complete new to me. This is very useful to avoid conflicts with internal commands already defined. Thanks!
– Marian G.
1 hour ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f476335%2fwhere-should-we-use-pstverb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown