Best practice for printing and evaluating formulas with the minimal codingBest practice for quoting a websiteBest practice: LaTeX constants for possibly changing repeatedly used symbolBest practice for index construction — recommendations and referencesIs removing ensuremath the best practice?Best Practice for creating user-defined command namesBest practice for typesetting quantifiers?Best Practice (Packages) for a Standard Technical Article With Math and FiguresBest practice for biblatex, biber, utf8 filesBest Practice: Package for Mathematical Documents - amsmath and Beyondbest practice for consistent text snippets
How is dynamic resistance of a diode modeled for large voltage variations?
Is there a realtime, uncut video of Saturn V ignition through tower clear?
Simple Arithmetic Puzzle 7. Or is it?
Was Tyrion always a poor strategist?
How does the +1 Keen Composite Longbow (+2 Str) work?
Best practice for printing and evaluating formulas with the minimal coding
Department head said that group project may be rejected. How to mitigate?
Farthing / Riding
How to convince boss to spend notice period on documentation instead of new projects
Why is こと used in 「私に何かできること」?
What does "bella ciao" mean literally?
How to tease a romance without a cat and mouse chase?
What are the domains of the multiplication and unit morphisms of a monoid object?
why "American-born", not "America-born"?
Story about encounter with hostile aliens
What quantum phenomena violate the superposition principle in electromagnetism?
How to say "invitation for war"?
Is being an extrovert a necessary condition to be a manager?
If the Charles SSL Proxy shows me sensitive data, is that data insecure/exposed?
How do you cope with rejection?
If you attack a Tarrasque while swallowed, what AC do you need to beat to hit it?
Parse a C++14 integer literal
How to draw with Tikz a chord parallel to AC that passes through a point?
How to safely discharge oneself
Best practice for printing and evaluating formulas with the minimal coding
Best practice for quoting a websiteBest practice: LaTeX constants for possibly changing repeatedly used symbolBest practice for index construction — recommendations and referencesIs removing ensuremath the best practice?Best Practice for creating user-defined command namesBest practice for typesetting quantifiers?Best Practice (Packages) for a Standard Technical Article With Math and FiguresBest practice for biblatex, biber, utf8 filesBest Practice: Package for Mathematical Documents - amsmath and Beyondbest practice for consistent text snippets
Can the following MWE be reduced by creating a command that can accept a formula then print and evaluate it without the need to write it twice in two different forms for both evaluating and printing as shown below?
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = SIpgfmathresultcm $
enddocument

math-mode best-practices pgfmath
add a comment |
Can the following MWE be reduced by creating a command that can accept a formula then print and evaluate it without the need to write it twice in two different forms for both evaluating and printing as shown below?
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = SIpgfmathresultcm $
enddocument

math-mode best-practices pgfmath
add a comment |
Can the following MWE be reduced by creating a command that can accept a formula then print and evaluate it without the need to write it twice in two different forms for both evaluating and printing as shown below?
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = SIpgfmathresultcm $
enddocument

math-mode best-practices pgfmath
Can the following MWE be reduced by creating a command that can accept a formula then print and evaluate it without the need to write it twice in two different forms for both evaluating and printing as shown below?
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = SIpgfmathresultcm $
enddocument

math-mode best-practices pgfmath
math-mode best-practices pgfmath
asked 1 hour ago
DiaaDiaa
2,94611857
2,94611857
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
AFAIK there is no such function available but I may be wrong. You could write your own parser that locally redefines the macros that print stuff to macros that wraps stuff in the respective functions. In the code below, I do that for frac and sqrt. This works in this case, also because you were kind enough to explicitly spell out multiplications and even used * for them. Clearly, this "parser" is fragile, but if you really feel it is worthwhile you may add other functions like sin and so on.
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
%newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
newcommandDiaaParse[1]begingroupdeffrac##1##2((##1)/(##2))%
defsqrt##1sqrt(##1)%
edefret#1%
pgfmathparseretpgfmathprintnumberpgfmathresult%
endgroup
%pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = DiaaParsetoprint$
enddocument

The current version does not work with SI, also because I didn't understand where the units cm come from, but this could be changed.
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins 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%2f491540%2fbest-practice-for-printing-and-evaluating-formulas-with-the-minimal-coding%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
AFAIK there is no such function available but I may be wrong. You could write your own parser that locally redefines the macros that print stuff to macros that wraps stuff in the respective functions. In the code below, I do that for frac and sqrt. This works in this case, also because you were kind enough to explicitly spell out multiplications and even used * for them. Clearly, this "parser" is fragile, but if you really feel it is worthwhile you may add other functions like sin and so on.
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
%newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
newcommandDiaaParse[1]begingroupdeffrac##1##2((##1)/(##2))%
defsqrt##1sqrt(##1)%
edefret#1%
pgfmathparseretpgfmathprintnumberpgfmathresult%
endgroup
%pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = DiaaParsetoprint$
enddocument

The current version does not work with SI, also because I didn't understand where the units cm come from, but this could be changed.
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins ago
add a comment |
AFAIK there is no such function available but I may be wrong. You could write your own parser that locally redefines the macros that print stuff to macros that wraps stuff in the respective functions. In the code below, I do that for frac and sqrt. This works in this case, also because you were kind enough to explicitly spell out multiplications and even used * for them. Clearly, this "parser" is fragile, but if you really feel it is worthwhile you may add other functions like sin and so on.
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
%newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
newcommandDiaaParse[1]begingroupdeffrac##1##2((##1)/(##2))%
defsqrt##1sqrt(##1)%
edefret#1%
pgfmathparseretpgfmathprintnumberpgfmathresult%
endgroup
%pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = DiaaParsetoprint$
enddocument

The current version does not work with SI, also because I didn't understand where the units cm come from, but this could be changed.
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins ago
add a comment |
AFAIK there is no such function available but I may be wrong. You could write your own parser that locally redefines the macros that print stuff to macros that wraps stuff in the respective functions. In the code below, I do that for frac and sqrt. This works in this case, also because you were kind enough to explicitly spell out multiplications and even used * for them. Clearly, this "parser" is fragile, but if you really feel it is worthwhile you may add other functions like sin and so on.
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
%newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
newcommandDiaaParse[1]begingroupdeffrac##1##2((##1)/(##2))%
defsqrt##1sqrt(##1)%
edefret#1%
pgfmathparseretpgfmathprintnumberpgfmathresult%
endgroup
%pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = DiaaParsetoprint$
enddocument

The current version does not work with SI, also because I didn't understand where the units cm come from, but this could be changed.
AFAIK there is no such function available but I may be wrong. You could write your own parser that locally redefines the macros that print stuff to macros that wraps stuff in the respective functions. In the code below, I do that for frac and sqrt. This works in this case, also because you were kind enough to explicitly spell out multiplications and even used * for them. Clearly, this "parser" is fragile, but if you really feel it is worthwhile you may add other functions like sin and so on.
documentclass[border=5mm]standalone
usepackagepgf,mathtools,siunitx
begindocument
newcommandtoprintfrac-4+sqrt4^2-4*1*32
%newcommandtoevaluate(-4+sqrt(4^2-4*1*3))/2
newcommandDiaaParse[1]begingroupdeffrac##1##2((##1)/(##2))%
defsqrt##1sqrt(##1)%
edefret#1%
pgfmathparseretpgfmathprintnumberpgfmathresult%
endgroup
%pgfmathparsetoevaluate
The first root is evaluated by $x_1 = toprint = DiaaParsetoprint$
enddocument

The current version does not work with SI, also because I didn't understand where the units cm come from, but this could be changed.
answered 1 hour ago
marmotmarmot
128k6162308
128k6162308
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins ago
add a comment |
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins ago
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins ago
Nice approach. I will experiment it a bit more, then come back in case something goes wrong.
– Diaa
38 mins 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%2f491540%2fbest-practice-for-printing-and-evaluating-formulas-with-the-minimal-coding%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