Formula layout

From Wiki
Jump to navigationJump to search



The most difficult part of using OOo Math comes when writing complicated formulas. This section provides some advice.

Brackets are your friends

OOo Math knows nothing about order of operation. You must use brackets to state order of operations explicitly. Consider the following example:

Markup Result
2 over x + 1 <math>{2 \over x} + 1</math>
2 over {x + 1} <math>2 \over {x + 1}</math>

Equations over more than one line

Suppose you want to type an equation covering more than one line. For example:

<math>x = 3\,\!</math>

<math>y = 1\,\!</math>

Your first reaction would be to simply press the Enter key. However, if you press the Enter key, though the markup goes to a new line, the resulting equation does not. You must type the newline command explicitly. This is illustrated in the table below.

Markup Result
x = 3
y = 1
<math>x = 3 \ y = 1</math>
x = 3 newline
y = 1
<math>x = 3\,\!</math>

<math>y = 1\,\!</math>

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
<math>\sum_{k=1}^n a_k</math>
int from 0 to x f(t) dt
or
int_0^x f(t) dt
<math>\int\limits_0^x f(t) dt</math> or <math>\int_0^x f(t) dt</math>
int from Re f <math>\int\limits_\Re f</math>
sum to infinity 2^{-n} <math>\sum_{ }^{\infin} 2^{-n}</math>
Documentation note.png For more details on integrals and sums, see Math commands- Reference in the Writer Guide.

Brackets with matrices look ugly!

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

Markup Result
matrix { a # b ## c # d } <math>\begin{matrix} a&b \\ c&d \end{matrix}</math>
Documentation note.png Rows are separated by two #'s and entries within each row are separated by one #.

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

Markup Result
( matrix { a # b ## c # d } ) (<math>\begin{matrix} a&b \\ c&d \end{matrix}</math>)

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) <math>\left( \begin{matrix} a&b \\ c&d \end{matrix} \right)</math>
Tip.png Use left[ and right] to obtain square brackets.


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} <math>\frac{df}{dx}</math>
{partial f} over {partial y} <math>\frac{\partial f}{\partial y}</math>
{partial^2 f} over {partial t^2} <math>\frac{\partial^2 f}{\partial t^2}</math>
Documentation note.png Notice that we have to use braces (squiggly brackets) to make the derivative.

How do I align my equations at the equals sign?

OOo Math does not have a command for aligning equations on a particular character, but you can use a matrix to do this, as shown below.

Markup Result
matrix{
alignr x+y # {}={} # alignl 2 ##
alignr x # {}={} # alignl 2-y
}
005a.gif

The empty braces around = are necessary because = is a binary operator and thus needs an expression on each side.

You can reduce the spacing around = if you change the inter-column spacing of the matrix:

  1. With the equation editor open, choose Format > Spacing from the menu bar.
  2. In the Spacing dialog, click the Category button and select Matrices in the drop-down menu.
  3. Enter 0% for Column spacing and click OK.
File:MathMatrixSpacing.png
Changing spacing in a matrix formula

See Also

Content on this page is licensed under the Creative Common Attribution 3.0 license (CC-BY).