Difference between revisions of "Common problem areas"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (v3.3 update, wikify)
Line 16: Line 16:
 
|}
 
|}
  
{{Documentation/Note|For more details on integrals and sums, see the [[Writer Guide]].}}
+
{{Documentation/Note|For more details on integrals and sums, see the [[Documentation/OOo3_User_Guides/Math_Guide/Math_commands_reference#Operators|Math commands reference]].}}
  
 
== Brackets with matrices look ugly! ==
 
== Brackets with matrices look ugly! ==
Line 41: Line 41:
 
|}
 
|}
  
OOoMath provides “scalable" brackets. That is, the brackets grow in size to match the size of their contents. Use the commands ''left('' and ''right)'' to make scalable brackets.
+
OOoMath provides “scalable" brackets. That is, the brackets grow in size to match the size of their contents. Use the commands <tt>left(</tt> and <tt>right)</tt> to make scalable brackets.
  
 
{|border="1" cellpadding=4 style="border-collapse:collapse;"
 
{|border="1" cellpadding=4 style="border-collapse:collapse;"
Line 52: Line 52:
 
|}
 
|}
  
{{Documentation/Tip|Use ''left['' and ''right]'' to obtain square brackets.}}
+
{{Documentation/Tip|Use <tt>left[</tt> and <tt>right]</tt> to obtain square brackets.}}
  
 
== How do I make a derivative? ==
 
== How do I make a derivative? ==
 
Making derivatives essentially comes down to one trick: ''Tell OOo it's a fraction''.
 
Making derivatives essentially comes down to one trick: ''Tell OOo it's a fraction''.
  
In other words, you have to use the “over" command. Combine this with either the letter “d" (for a total derivative) or the “partial" command (for a partial derivative) to achieve the effect of a derivative.
+
In other words, you have to use the <tt>over</tt> command. Combine this with either the letter “d" (for a total derivative) or the <tt>partial</tt> command (for a partial derivative) to achieve the effect of a derivative.
  
 
{|border="1" cellpadding=4 style="border-collapse:collapse;"
 
{|border="1" cellpadding=4 style="border-collapse:collapse;"
Line 71: Line 71:
 
|}
 
|}
  
{{Documentation/Note|Notice that we had to use squiggly brackets to make the derivative.}}
+
{{Documentation/Note|Notice that we have to use braces (squiggly brackets) to make the derivative.}}
  
 
== Numbering equations ==
 
== Numbering equations ==

Revision as of 14:17, 13 February 2011

How do I add limits to my sum/integral?

The “sum" and “int" commands can (optionally) take in the parameters “from" and “to". These are used for lower and upper limits respectively. These parameters can be used singly or together. Limits for integrals are usually treated as subscripts and superscripts.

Markup Result
sum from k = 1 to n a_k
int from 0 to x f(t) dt
or
int_0^x f(t) dt
or
int from Re f
sum to infinity 2^{-n}

Template:Documentation/Note

Brackets with matrices look ugly!

For background, we start with an overview of the matrix command:

Markup Result
matrix { a # b ## c # d }

Template:Documentation/Note

The first problem people have with matrices is that brackets do not “scale" with the matrix:

Markup Result
( matrix { a # b ## c # d } ) ()

OOoMath provides “scalable" brackets. That is, the brackets grow in size to match the size of their contents. Use the commands left( and right) to make scalable brackets.

Markup Result
left( matrix { a # b ## c # d } right)

Template:Documentation/Tip

How do I make a derivative?

Making derivatives essentially comes down to one trick: Tell OOo it's a fraction.

In other words, you have to use the over command. Combine this with either the letter “d" (for a total derivative) or the partial command (for a partial derivative) to achieve the effect of a derivative.

Markup Result
{df} over {dx}
{partial f} over {partial y}
{partial^2 f} over {partial t^2}

Template:Documentation/Note

Numbering equations

Equation numbering is one of OOoMath's best hidden features. The steps are simple, but obscure:

  1. Start a new line.
  2. Type “fn" and then press F3.

The “fn" is replaced by a numbered formula:

(2)

Now you can double-click on the formula to edit it. For example, here is the Riemann Zeta function:

(3)

You can reference an equation (“as shown in Equation (2)") with these steps:

  1. Insert > Cross-reference..
  2. Click on the References tab (Figure 15).
  3. Under Type, select Text.
  4. Under Selection, pick the equation number.
  5. Under Format, choose Reference.
  6. Click Insert.

Done! If you later add more equations to the paper before the referenced equation, all the equations will automatically renumber and the cross-references will update.

Frame15.png

Template:Documentation/Tip

Personal tools