Help/Simple Equations: Difference between revisions

From CIRPwiki
Jump to navigation Jump to search
mNo edit summary
 
(15 intermediate revisions by 2 users not shown)
Line 2: Line 2:
Typically numbered equations are centered in documents.  Due to the appearance of the wiki, however, all numbered equations shown on this wiki are left justified with a small indent and the equation number is right justified.
Typically numbered equations are centered in documents.  Due to the appearance of the wiki, however, all numbered equations shown on this wiki are left justified with a small indent and the equation number is right justified.


==AutoNumbered Equation==
==Numbered Equation==
To produce a numbered equation in a wiki document, simply surround the LaTeX for the equations by the following:  
To produce a numbered equation in a wiki document, simply surround the LaTeX for the equations by the following:  
'''\ begin{equation} \label{}...\ end{equation)''' (Note: no space between the '\' and the 'begin' or 'end).  The equation number will be automatically incremented, but will not be shown unless desired.


For example, this equation:
\begin{equation} \label{}
\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
\end{equation}


was typed as follows:<br>
<big><nowiki>{{Equation|<math> ... </math>|4}}</nowiki></big>
'''\ begin{equation} \label{}<br>'''
*Replace '...' with the LaTeX equation (without leading and ending delimiters).
'''&nbsp;&nbsp;&nbsp;\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}<br>'''
*The number for the equation is the last parameter in the template.  In this case the equation number is 4.
'''\ end{equation}<br>'''
 


==Equation Not Numbered==
For example, this equation:
If for some reason it is desired to have an equation set aside but turn off display of the equation number, just leave off the delimiter '''\label{}'''.  Be aware that the numbering for this equation is still incremented, just the number is not displayed.
{{Equation|<math>
\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{4}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
</math>|4}}


For example, the above equation again:
was typed as follows:
\begin{equation}
\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
\end{equation}


was typed as follows:<br>
'''\ begin{equation}<br>'''
'''&nbsp;&nbsp;&nbsp;\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}<br>'''
'''\ end{equation}<br>'''


==Force Different Number From the Automatically Assigned==
'''<nowiki>{{Equation|</nowiki>'''<br>
The automatic numbering is for all equations on a given page.  But on a wiki, pages can be very long and it is deemed appropriate to separate material onto different pages (ie. by Chapters or Sections).  In these cases, the user wishes to continue numbering from a previous value, but the automatic numbering will start over at 1 since material is on a new page.  There is a way to force a different number as needed using the '''\tag{}''' delimiter.
'''<nowiki><math></nowiki><br>'''
'''&nbsp;&nbsp;&nbsp;<nowiki>\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}</nowiki><br>'''
'''<nowiki></math>|4}}</nowiki>'''


In the actual document that the above equation came from, the number for that equation was 4.  If I just used the '''\ begin{equation} \label''' to start this equation at this point on the page, the automatic number would give a '''3'''.  To change this, switch the '''\label{}''' with '''\tag{4}''' and the equation will appear with the desired number.  (Note:  '''4''' could be any alphanumeric label of any number of characters).
==Equation Not Numbered==
If for some reason it is desired to have an equation set aside but turn off display of the equation number, Then do not use the Equation template (<nowiki>{{Equation| ... |#}}</nowiki>).  You do still need to preface your equation by the <nowiki><math> and </math></nowiki> delimiters.


To demonstrate, the equation below forced with the equation number of '''4''':
For example, the above equation again:
\begin{equation} \tag{4}
<math>
\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
\end{equation}
</math>


was typed as follows:<br>
was typed as follows:<br>
'''\ begin{equation} \tag{4}<br>'''
'''<nowiki><math></nowiki><br>'''
'''&nbsp;&nbsp;&nbsp;\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}<br>'''
'''&nbsp;&nbsp;&nbsp;<nowiki>\left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}</nowiki><br>'''
'''\ end{equation}<br>'''
'''<nowiki></math></nowiki>'''


It may be easiest to always force a tag number that is known, rather than relying on the automatic numbering.
Some advanced equations have multiple lines, and it may be desired for each line to be aligned at a certain character on each line.
These advanced equations are described on the next page.




 
---------
<hr>
Some advanced equations have multiple lines, and it may be desired for each line to be aligned at a certain character on each line.
These advanced equations are described on the next page.
[[Help/Adv._Equations|Adv. Equations]]
[[Help/Adv._Equations|Adv. Equations]]

Latest revision as of 15:10, 13 December 2022

Typically numbered equations are centered in documents. Due to the appearance of the wiki, however, all numbered equations shown on this wiki are left justified with a small indent and the equation number is right justified.

Numbered Equation

To produce a numbered equation in a wiki document, simply surround the LaTeX for the equations by the following:


{{Equation|<math> ... </math>|4}}

  • Replace '...' with the LaTeX equation (without leading and ending delimiters).
  • The number for the equation is the last parameter in the template. In this case the equation number is 4.


For example, this equation:

  (4)

was typed as follows:


{{Equation|
<math>
   \left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
</math>|4}}

Equation Not Numbered

If for some reason it is desired to have an equation set aside but turn off display of the equation number, Then do not use the Equation template ({{Equation| ... |#}}). You do still need to preface your equation by the <math> and </math> delimiters.

For example, the above equation again:

was typed as follows:
<math>
   \left( {{\rho }_{s}}-\rho \right)g\frac{\pi }{6}{{d}^{3}}={{C}_{D}}\frac{\pi }{8}\rho W_{s}^{2}{{d}^{2}}
</math>

Some advanced equations have multiple lines, and it may be desired for each line to be aligned at a certain character on each line. These advanced equations are described on the next page.



Adv. Equations