Difference between revisions of "FormulaText Command"

From GeoGebra Manual
Jump to: navigation, search
Line 7: Line 7:
 
: {{Example|1=If ''a = 2'' and ''f(x) = a x<sup>2</sup>'', then <code>FormulaText[f, true]</code> returns ''2 x<sup>2</sup>'' (as a LaTeX text) and <code>FormulaText[f, false]</code> returns ''a x<sup>2</sup>'' (as a LaTeX text).}}
 
: {{Example|1=If ''a = 2'' and ''f(x) = a x<sup>2</sup>'', then <code>FormulaText[f, true]</code> returns ''2 x<sup>2</sup>'' (as a LaTeX text) and <code>FormulaText[f, false]</code> returns ''a x<sup>2</sup>'' (as a LaTeX text).}}
 
; FormulaText[Object, Boolean for Substitution of Variables, Boolean Show Name]  
 
; FormulaText[Object, Boolean for Substitution of Variables, Boolean Show Name]  
:Returns the formula for the object as LaTeX text. The first Boolean variable determines if values are substituted for variables (''true'') or if variable names are shown in the text (''false''), the second Boolean variable determines if the object name is shown in the text (''true'').
+
:Returns the formula for the object as LaTeX text. The first Boolean variable determines if values are substituted for variables (''true'') or if variable names are shown in the text (''false''), the second Boolean variable determines if the object name is shown in the text (''true'') or not (''false'').
 
: {{Example|1=If ''a = 2'' and ''f(x) = a x<sup>2</sup>'', then <code>FormulaText[f, true, true]</code> returns ''f(x)=2 x<sup>2</sup>'' (as a LaTeX text) and <code>FormulaText[f, false, false]</code> returns ''a x<sup>2</sup>'' (as a LaTeX text).}}
 
: {{Example|1=If ''a = 2'' and ''f(x) = a x<sup>2</sup>'', then <code>FormulaText[f, true, true]</code> returns ''f(x)=2 x<sup>2</sup>'' (as a LaTeX text) and <code>FormulaText[f, false, false]</code> returns ''a x<sup>2</sup>'' (as a LaTeX text).}}

Revision as of 12:45, 8 December 2011


FormulaText[Object]
Returns the formula for the object as a LaTeX text.
Note: By default, values are substituted for variables.
Example: If a = 2 and f(x) = a x2, then FormulaText[f] returns 2 x2 (as a LaTeX text).
FormulaText[Object, Boolean]
Returns the formula for the object as LaTeX text. The Boolean variable determines if values are substituted for variables (true) or if variable names are shown in the text (false).
Example: If a = 2 and f(x) = a x2, then FormulaText[f, true] returns 2 x2 (as a LaTeX text) and FormulaText[f, false] returns a x2 (as a LaTeX text).
FormulaText[Object, Boolean for Substitution of Variables, Boolean Show Name]
Returns the formula for the object as LaTeX text. The first Boolean variable determines if values are substituted for variables (true) or if variable names are shown in the text (false), the second Boolean variable determines if the object name is shown in the text (true) or not (false).
Example: If a = 2 and f(x) = a x2, then FormulaText[f, true, true] returns f(x)=2 x2 (as a LaTeX text) and FormulaText[f, false, false] returns a x2 (as a LaTeX text).
© 2024 International GeoGebra Institute