Type phase symbol in ConTeXt, like LaTeX steinmetz package
I am trying to create an electrical phase symbol in ConTeXt like that produced by the phase{} command from LaTeX's steinmetz package.
Here is what the symbol looks like:

(source: robinbye.com)
Is there something out there already or do I need to brew my own? If I do, suggestions would be appreciated. I'm relatively new to ConTeXt and MetaPost.
Here is the meat from the steinmetz package, for reference.
RequirePackage{pict2e}[2004/07/06]
newsavebox{stm@phasebox}
newlength{stm@phasedp}
newlength{stm@phaseht}
newlength{stm@phasetot}
newlength{stm@phasewd}
newcommandphase[2][1]{%
sboxstm@phasebox{$ifcase#1relaxdisplaystyleortextstyleorscriptstyleorscriptscriptstylefi#2$}
stm@phaseht=htstm@phasebox
stm@phasedp=dpstm@phasebox
stm@phasetot=stm@phasedp advancestm@phasetot .35ex advancestm@phasetotstm@phaseht
stm@phasewd=wdstm@phasebox advancestm@phasewd .5stm@phasetot
setboxstm@phasebox=vbox tostm@phaseht{
hbox{setlength{unitlength}{1pt}linethickness{.6pt}%
edefph@x{strip@ptstm@phasewd}edefph@y{strip@ptstm@phasetot}%
dimen@ .5stm@phasetot edefph@dx{strip@ptdimen@}%
begin{picture}(ph@x,ph@y)
put(0,0){circle*{.4}}
put(0,0){line(1,0){ph@x}}put(0,0){line(1,2){ph@dx}}
put(ph@dx,1.5){raisestm@phasedpvbox{boxstm@phasebox}}
end{picture}%
}vss}%
advancestm@phasedp .35ex advancestm@phasedp .6pt
dpz@=stm@phasedp boxstm@phasebox}
context metapost
add a comment |
I am trying to create an electrical phase symbol in ConTeXt like that produced by the phase{} command from LaTeX's steinmetz package.
Here is what the symbol looks like:

(source: robinbye.com)
Is there something out there already or do I need to brew my own? If I do, suggestions would be appreciated. I'm relatively new to ConTeXt and MetaPost.
Here is the meat from the steinmetz package, for reference.
RequirePackage{pict2e}[2004/07/06]
newsavebox{stm@phasebox}
newlength{stm@phasedp}
newlength{stm@phaseht}
newlength{stm@phasetot}
newlength{stm@phasewd}
newcommandphase[2][1]{%
sboxstm@phasebox{$ifcase#1relaxdisplaystyleortextstyleorscriptstyleorscriptscriptstylefi#2$}
stm@phaseht=htstm@phasebox
stm@phasedp=dpstm@phasebox
stm@phasetot=stm@phasedp advancestm@phasetot .35ex advancestm@phasetotstm@phaseht
stm@phasewd=wdstm@phasebox advancestm@phasewd .5stm@phasetot
setboxstm@phasebox=vbox tostm@phaseht{
hbox{setlength{unitlength}{1pt}linethickness{.6pt}%
edefph@x{strip@ptstm@phasewd}edefph@y{strip@ptstm@phasetot}%
dimen@ .5stm@phasetot edefph@dx{strip@ptdimen@}%
begin{picture}(ph@x,ph@y)
put(0,0){circle*{.4}}
put(0,0){line(1,0){ph@x}}put(0,0){line(1,2){ph@dx}}
put(ph@dx,1.5){raisestm@phasedpvbox{boxstm@phasebox}}
end{picture}%
}vss}%
advancestm@phasedp .35ex advancestm@phasedp .6pt
dpz@=stm@phasedp boxstm@phasebox}
context metapost
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
In the documentation forMakeCirc, there appears to be a commandmodargwhich looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.
– morbusg
Mar 8 '13 at 6:43
add a comment |
I am trying to create an electrical phase symbol in ConTeXt like that produced by the phase{} command from LaTeX's steinmetz package.
Here is what the symbol looks like:

(source: robinbye.com)
Is there something out there already or do I need to brew my own? If I do, suggestions would be appreciated. I'm relatively new to ConTeXt and MetaPost.
Here is the meat from the steinmetz package, for reference.
RequirePackage{pict2e}[2004/07/06]
newsavebox{stm@phasebox}
newlength{stm@phasedp}
newlength{stm@phaseht}
newlength{stm@phasetot}
newlength{stm@phasewd}
newcommandphase[2][1]{%
sboxstm@phasebox{$ifcase#1relaxdisplaystyleortextstyleorscriptstyleorscriptscriptstylefi#2$}
stm@phaseht=htstm@phasebox
stm@phasedp=dpstm@phasebox
stm@phasetot=stm@phasedp advancestm@phasetot .35ex advancestm@phasetotstm@phaseht
stm@phasewd=wdstm@phasebox advancestm@phasewd .5stm@phasetot
setboxstm@phasebox=vbox tostm@phaseht{
hbox{setlength{unitlength}{1pt}linethickness{.6pt}%
edefph@x{strip@ptstm@phasewd}edefph@y{strip@ptstm@phasetot}%
dimen@ .5stm@phasetot edefph@dx{strip@ptdimen@}%
begin{picture}(ph@x,ph@y)
put(0,0){circle*{.4}}
put(0,0){line(1,0){ph@x}}put(0,0){line(1,2){ph@dx}}
put(ph@dx,1.5){raisestm@phasedpvbox{boxstm@phasebox}}
end{picture}%
}vss}%
advancestm@phasedp .35ex advancestm@phasedp .6pt
dpz@=stm@phasedp boxstm@phasebox}
context metapost
I am trying to create an electrical phase symbol in ConTeXt like that produced by the phase{} command from LaTeX's steinmetz package.
Here is what the symbol looks like:

(source: robinbye.com)
Is there something out there already or do I need to brew my own? If I do, suggestions would be appreciated. I'm relatively new to ConTeXt and MetaPost.
Here is the meat from the steinmetz package, for reference.
RequirePackage{pict2e}[2004/07/06]
newsavebox{stm@phasebox}
newlength{stm@phasedp}
newlength{stm@phaseht}
newlength{stm@phasetot}
newlength{stm@phasewd}
newcommandphase[2][1]{%
sboxstm@phasebox{$ifcase#1relaxdisplaystyleortextstyleorscriptstyleorscriptscriptstylefi#2$}
stm@phaseht=htstm@phasebox
stm@phasedp=dpstm@phasebox
stm@phasetot=stm@phasedp advancestm@phasetot .35ex advancestm@phasetotstm@phaseht
stm@phasewd=wdstm@phasebox advancestm@phasewd .5stm@phasetot
setboxstm@phasebox=vbox tostm@phaseht{
hbox{setlength{unitlength}{1pt}linethickness{.6pt}%
edefph@x{strip@ptstm@phasewd}edefph@y{strip@ptstm@phasetot}%
dimen@ .5stm@phasetot edefph@dx{strip@ptdimen@}%
begin{picture}(ph@x,ph@y)
put(0,0){circle*{.4}}
put(0,0){line(1,0){ph@x}}put(0,0){line(1,2){ph@dx}}
put(ph@dx,1.5){raisestm@phasedpvbox{boxstm@phasebox}}
end{picture}%
}vss}%
advancestm@phasedp .35ex advancestm@phasedp .6pt
dpz@=stm@phasedp boxstm@phasebox}
context metapost
context metapost
edited 2 hours ago
Glorfindel
253129
253129
asked Mar 5 '13 at 19:07
KennyKenny
312
312
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
In the documentation forMakeCirc, there appears to be a commandmodargwhich looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.
– morbusg
Mar 8 '13 at 6:43
add a comment |
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
In the documentation forMakeCirc, there appears to be a commandmodargwhich looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.
– morbusg
Mar 8 '13 at 6:43
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
In the documentation for
MakeCirc, there appears to be a command modarg which looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.– morbusg
Mar 8 '13 at 6:43
In the documentation for
MakeCirc, there appears to be a command modarg which looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.– morbusg
Mar 8 '13 at 6:43
add a comment |
1 Answer
1
active
oldest
votes
The following gives something like usable results:
startuseMPgraphic{formula}
picture p;
pair zu, zl;
numeric delta, width;
path roof;
width = 2.5 pt;
p := MPbetex{txt};
zl := llcorner (p); zu := ulcorner (p);
delta := ypart(zu) - ypart(zl);
roof := zu -- zl + (-delta - width, -width) -- lrcorner (p) + (0, -width);
pickup pencircle scaled 0.7pt;
draw roof withcolor black;
draw p withcolor black;
stopuseMPgraphic
defputfm#1{
setMPtext{txt}{$ #1 $}
hbox{lower 4pt hbox{useMPgraphic{formula}}}
}
starttext
section{Vertical}
putfm {1+2+3+4}
section{Inline}
Lorem ipsum dolor sit amet, consectetuer putfm {1-2-3-4-5} adipiscing
elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae,
felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
consectetuer id, vulputate a, magna. Donec vehicula augue eu
neque. Pellentesque habitant morbi tristique putfm {{a,b}} senectus
et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras
viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla
ultrices. Phasellus eu tellus sit amet tortor gravida
placerat. Integer sapien est, iaculis in, pretium quis, viverra ac,
putfm {1+2+3+4+5} nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar
at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius
orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis
quis, diam. Duis putfm {Sigma x_i} eget orci sit amet orci dignissim
rutrum.
stoptext
giving

Issues:
- I'm not really familiar with setting Metapost graphics inline, and there is clearly too much horizontal space in the above when the formula is set inline. Using
setboundsin Metapost will give control over the resulting bounding box. I didn't fiddle with this, because what you want will depend on how you are putting these formula inline, and perhaps you don't want to do that at all; - The last formula, with the
Sigma, has the Steinmetz line too close to the formula inside. - The last and third-from-last formulae have the wrong baseline, because their formulae inside have a different depth which the code doesn't handle. To handle this requires more complex code, such as setting inside a box register, looking at the depth, and doing a
raisedependent on this value. I can try to fix this if it is important. The Latexsteinmetzcode you posted seems to do this and this is worth fixing.
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%2f101050%2ftype-phase-symbol-in-context-like-latex-steinmetz-package%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
The following gives something like usable results:
startuseMPgraphic{formula}
picture p;
pair zu, zl;
numeric delta, width;
path roof;
width = 2.5 pt;
p := MPbetex{txt};
zl := llcorner (p); zu := ulcorner (p);
delta := ypart(zu) - ypart(zl);
roof := zu -- zl + (-delta - width, -width) -- lrcorner (p) + (0, -width);
pickup pencircle scaled 0.7pt;
draw roof withcolor black;
draw p withcolor black;
stopuseMPgraphic
defputfm#1{
setMPtext{txt}{$ #1 $}
hbox{lower 4pt hbox{useMPgraphic{formula}}}
}
starttext
section{Vertical}
putfm {1+2+3+4}
section{Inline}
Lorem ipsum dolor sit amet, consectetuer putfm {1-2-3-4-5} adipiscing
elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae,
felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
consectetuer id, vulputate a, magna. Donec vehicula augue eu
neque. Pellentesque habitant morbi tristique putfm {{a,b}} senectus
et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras
viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla
ultrices. Phasellus eu tellus sit amet tortor gravida
placerat. Integer sapien est, iaculis in, pretium quis, viverra ac,
putfm {1+2+3+4+5} nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar
at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius
orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis
quis, diam. Duis putfm {Sigma x_i} eget orci sit amet orci dignissim
rutrum.
stoptext
giving

Issues:
- I'm not really familiar with setting Metapost graphics inline, and there is clearly too much horizontal space in the above when the formula is set inline. Using
setboundsin Metapost will give control over the resulting bounding box. I didn't fiddle with this, because what you want will depend on how you are putting these formula inline, and perhaps you don't want to do that at all; - The last formula, with the
Sigma, has the Steinmetz line too close to the formula inside. - The last and third-from-last formulae have the wrong baseline, because their formulae inside have a different depth which the code doesn't handle. To handle this requires more complex code, such as setting inside a box register, looking at the depth, and doing a
raisedependent on this value. I can try to fix this if it is important. The Latexsteinmetzcode you posted seems to do this and this is worth fixing.
add a comment |
The following gives something like usable results:
startuseMPgraphic{formula}
picture p;
pair zu, zl;
numeric delta, width;
path roof;
width = 2.5 pt;
p := MPbetex{txt};
zl := llcorner (p); zu := ulcorner (p);
delta := ypart(zu) - ypart(zl);
roof := zu -- zl + (-delta - width, -width) -- lrcorner (p) + (0, -width);
pickup pencircle scaled 0.7pt;
draw roof withcolor black;
draw p withcolor black;
stopuseMPgraphic
defputfm#1{
setMPtext{txt}{$ #1 $}
hbox{lower 4pt hbox{useMPgraphic{formula}}}
}
starttext
section{Vertical}
putfm {1+2+3+4}
section{Inline}
Lorem ipsum dolor sit amet, consectetuer putfm {1-2-3-4-5} adipiscing
elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae,
felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
consectetuer id, vulputate a, magna. Donec vehicula augue eu
neque. Pellentesque habitant morbi tristique putfm {{a,b}} senectus
et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras
viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla
ultrices. Phasellus eu tellus sit amet tortor gravida
placerat. Integer sapien est, iaculis in, pretium quis, viverra ac,
putfm {1+2+3+4+5} nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar
at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius
orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis
quis, diam. Duis putfm {Sigma x_i} eget orci sit amet orci dignissim
rutrum.
stoptext
giving

Issues:
- I'm not really familiar with setting Metapost graphics inline, and there is clearly too much horizontal space in the above when the formula is set inline. Using
setboundsin Metapost will give control over the resulting bounding box. I didn't fiddle with this, because what you want will depend on how you are putting these formula inline, and perhaps you don't want to do that at all; - The last formula, with the
Sigma, has the Steinmetz line too close to the formula inside. - The last and third-from-last formulae have the wrong baseline, because their formulae inside have a different depth which the code doesn't handle. To handle this requires more complex code, such as setting inside a box register, looking at the depth, and doing a
raisedependent on this value. I can try to fix this if it is important. The Latexsteinmetzcode you posted seems to do this and this is worth fixing.
add a comment |
The following gives something like usable results:
startuseMPgraphic{formula}
picture p;
pair zu, zl;
numeric delta, width;
path roof;
width = 2.5 pt;
p := MPbetex{txt};
zl := llcorner (p); zu := ulcorner (p);
delta := ypart(zu) - ypart(zl);
roof := zu -- zl + (-delta - width, -width) -- lrcorner (p) + (0, -width);
pickup pencircle scaled 0.7pt;
draw roof withcolor black;
draw p withcolor black;
stopuseMPgraphic
defputfm#1{
setMPtext{txt}{$ #1 $}
hbox{lower 4pt hbox{useMPgraphic{formula}}}
}
starttext
section{Vertical}
putfm {1+2+3+4}
section{Inline}
Lorem ipsum dolor sit amet, consectetuer putfm {1-2-3-4-5} adipiscing
elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae,
felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
consectetuer id, vulputate a, magna. Donec vehicula augue eu
neque. Pellentesque habitant morbi tristique putfm {{a,b}} senectus
et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras
viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla
ultrices. Phasellus eu tellus sit amet tortor gravida
placerat. Integer sapien est, iaculis in, pretium quis, viverra ac,
putfm {1+2+3+4+5} nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar
at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius
orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis
quis, diam. Duis putfm {Sigma x_i} eget orci sit amet orci dignissim
rutrum.
stoptext
giving

Issues:
- I'm not really familiar with setting Metapost graphics inline, and there is clearly too much horizontal space in the above when the formula is set inline. Using
setboundsin Metapost will give control over the resulting bounding box. I didn't fiddle with this, because what you want will depend on how you are putting these formula inline, and perhaps you don't want to do that at all; - The last formula, with the
Sigma, has the Steinmetz line too close to the formula inside. - The last and third-from-last formulae have the wrong baseline, because their formulae inside have a different depth which the code doesn't handle. To handle this requires more complex code, such as setting inside a box register, looking at the depth, and doing a
raisedependent on this value. I can try to fix this if it is important. The Latexsteinmetzcode you posted seems to do this and this is worth fixing.
The following gives something like usable results:
startuseMPgraphic{formula}
picture p;
pair zu, zl;
numeric delta, width;
path roof;
width = 2.5 pt;
p := MPbetex{txt};
zl := llcorner (p); zu := ulcorner (p);
delta := ypart(zu) - ypart(zl);
roof := zu -- zl + (-delta - width, -width) -- lrcorner (p) + (0, -width);
pickup pencircle scaled 0.7pt;
draw roof withcolor black;
draw p withcolor black;
stopuseMPgraphic
defputfm#1{
setMPtext{txt}{$ #1 $}
hbox{lower 4pt hbox{useMPgraphic{formula}}}
}
starttext
section{Vertical}
putfm {1+2+3+4}
section{Inline}
Lorem ipsum dolor sit amet, consectetuer putfm {1-2-3-4-5} adipiscing
elit. Ut purus elit, vestibulum ut, placerat ac, adipiscing vitae,
felis. Curabitur dictum gravida mauris. Nam arcu libero, nonummy eget,
consectetuer id, vulputate a, magna. Donec vehicula augue eu
neque. Pellentesque habitant morbi tristique putfm {{a,b}} senectus
et netus et malesuada fames ac turpis egestas. Mauris ut leo. Cras
viverra metus rhoncus sem. Nulla et lectus vestibulum urna fringilla
ultrices. Phasellus eu tellus sit amet tortor gravida
placerat. Integer sapien est, iaculis in, pretium quis, viverra ac,
putfm {1+2+3+4+5} nunc. Praesent eget sem vel leo ultrices
bibendum. Aenean faucibus. Morbi dolor nulla, malesuada eu, pulvinar
at, mollis ac, nulla. Curabitur auctor semper nulla. Donec varius
orci eget risus. Duis nibh mi, congue eu, accumsan eleifend, sagittis
quis, diam. Duis putfm {Sigma x_i} eget orci sit amet orci dignissim
rutrum.
stoptext
giving

Issues:
- I'm not really familiar with setting Metapost graphics inline, and there is clearly too much horizontal space in the above when the formula is set inline. Using
setboundsin Metapost will give control over the resulting bounding box. I didn't fiddle with this, because what you want will depend on how you are putting these formula inline, and perhaps you don't want to do that at all; - The last formula, with the
Sigma, has the Steinmetz line too close to the formula inside. - The last and third-from-last formulae have the wrong baseline, because their formulae inside have a different depth which the code doesn't handle. To handle this requires more complex code, such as setting inside a box register, looking at the depth, and doing a
raisedependent on this value. I can try to fix this if it is important. The Latexsteinmetzcode you posted seems to do this and this is worth fixing.
edited Mar 11 '13 at 9:47
answered Mar 11 '13 at 9:11
Charles StewartCharles Stewart
17.3k355111
17.3k355111
add a comment |
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%2f101050%2ftype-phase-symbol-in-context-like-latex-steinmetz-package%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
Welcome to TeX.sx!
– Torbjørn T.
Mar 5 '13 at 19:08
In the documentation for
MakeCirc, there appears to be a commandmodargwhich looks like it could be used for this. Unfortunately I couldn't get the package to work, so I cannot confirm it.– morbusg
Mar 8 '13 at 6:43