Common LaTeX Stuff for Boolean Algebra

Writing mathematical equations properly on a computer isn’t hard, and LaTeX is probably the best tool for it, and is supported by all these office applications:

When it comes to the choice of software, LibreOffice and Apple iWork are free and very powerful. It’s also always a good idea to support open-source projects like LibreOffice against Micro$oft’s bloatware.

Later on when you are working in IT, Math, or Physics, etc. LaTeX will also be the preferred (sometimes only) tool to create PDFs in both the industry and academia. This document only introduces you to the math bits needed for Boolean algebra, but I’ve seen math students taking post-secondary math notes using LaTeX, very efficient once you are familiar with it.

If you are on macOS, stick to Apple Pages, it saves you a lot of time. Simply do Insert -> Equation and you’ll be able to start writing LaTeX math without any issue, it also gives you live preview, and Apple has a pretty decent support page for it: https://support.apple.com/en-us/HT202501

Something that we recently found out, M$ Office has the worse support for proper LaTeX grammar, so you might want to be careful there. It seems that M$ takes LaTeX input and converts it (incorrectly) to its own proprietary format instead of having a real rendering engine.

To setup LaTeX equation writing in M$, first select Insert -> Equation, then make sure you select LaTeX when creating it:

Taken from M$ Support

Basic Symbols

Writing LaTeX is kinda like writing code, except that this code is not to be executed but rendered. Standard symbols and numbers and letters will be rendered directly, like the plus sign and equal sign. Power is also simple with the ^ symbol e.g.:

Basic stuff: y=a^2+bx+c will be rendered as:

    \[y=a^2+bx+c\]

Power: a^{123} will be rendered as:

    \[a^{123}\]

Footnotes: a_{16} will be rendered as:

    \[a_{16}\]

Fractions: \frac{b}{a+c} will be rendered as:

    \[\frac{b}{a+c}\]

A pair of curly brackets is used to indicate whatever is inside is a single component. Special symbols require you to start writing its name with right slash \

For example:

\Sigma gets rendered as: 

    \[\Sigma\]

\Pi gets rendered as: 

    \[\Pi\]

\oplus gets rendered as: 

    \[\oplus\]

\cdot gets rendered as:

    \[\cdot\]

Make sure to also use space bar to separate different symbols.

Overlines

Overlines (NOT operators) in LaTeX is supposed to be simple.

\overline{X} gets rendered as:

    \[\overline{X}\]

\overline{X+Y} gets rendered as:

    \[\overline{X+Y}\]

\overline{X}\overline{Y} gets rendered as:

    \[\overline{X} \ \overline{Y}\]

For some reason that last one above might not be rendered correctly in older versions of M$ Office, you will have to do one of the below:

Use \cdot: \overline{X} \cdot \overline{Y} gets rendered as:

    \[\overline{X}\cdot\overline{Y}\]

Use right slash and whitespace: \overline{X} \  \overline{Y} gets rendered as:

    \[\overline{X}\ \overline{Y}\]

Hopefully, this is enough for most boolean algebra equations. If you have more suggestions please let me know.

de_DE