Ubuntu – Inserting a math equation to a LibreOffice presentation

libreofficepresentation

In a LibreOffice Impress presentation (Version 5.1.4.2 on Ubuntu 16.04), when I click Insert -> Object -> Formula, I see a visual toolbar that lets me add elements of an equation such as fractions etc. However:

  • The inserted formula is in a very small font (18 pt), and I do not find any way to enlarge it, neither within the formula editor nor outside it. Outside the editor, I can enlarge the font of the box, but it has no effect.
  • It is very cumbersome to insert formulas through the visual editor. Is there a way to insert formulas in a plain text markup, like in Writer?

Best Answer

TexMaths

TexMaths is an extension designed to provide LaTeX support in LibreOffice. LaTeX equations can be inserted as images (SVG or PNG formats) and the LaTeX code is saved into the image attribute for further editing. To insert your first equation into a document, simply type a LaTex math instruction in the text field of the TexMaths Equations window and then click on the LaTeX button. Example: x(t) = \mu ^2 (t) should produce the equation x(t)=µ²(t)

TexMaths is open source software licensed under the GPL.

Installation

  1. Install TexLive.

    sudo apt-get install texlive texlive-binaries dvipng  
    
  2. Download the TexMaths extension by following the download link at the official TexMaths website. The file to download ends in an .oxt extension.

  3. Open LibreOffice Writer and install the TexMaths extension using the Tools -> Extension Manager menu.

  4. Close and reopen LibreOffice Writer. You will see a four new TexMaths icons in the toolbar. Click on the TexMaths System Configuration icon and fill in the paths of your programs (usually /usr/bin for all).

    enter image description here

Usage

  1. Run TexMaths by clicking on one of the TexMaths Equations icons. Clicking on the first Pi icon which is marked by a black arrow in the below screenshot will open a new TexMaths Equations window. You need to type a group of mathematical symbols in LaTeX format inside the TexMaths Equations window instead of typing it directly on the slide

    enter image description here

    Don't do it this way

    enter image description here

    Do it this way

    enter image description here Select either Display or Inline Equation Type. Display looks better than Inline

    After the equation is added to the slide, you can drag it to its correct position on the slide.

    enter image description here

  2. There can be images of mathematical symbols and plain text mathematical symbols together in the same slide, as in the below slide where the large equation in the middle is an embedded image and the highlighted text is plain text.

    enter image description here

Examples

enter image description here

Related Question