SlideShare une entreprise Scribd logo
1  sur  37
Télécharger pour lire hors ligne
Jayant Apte, Drexel University

Pictures in

PICTURES IN
IN PRESENTATIONS
Sponsored by IGSA, DIG, and GSA

JAYANT APTE
PhD Candidate
Drexel University
Jayant Apte, Drexel University

Pictures in

Outline
External graphics formats
●
Importing bitmap graphics
–
–
–

package
Figure environment
The sub-figure environment

Creating and importing vector graphics
Creating vector graphics inside
●
The
package
●
Latex-draw interface to pstricks
●
LibreOffice with TexMaths
●
Jayant Apte, Drexel University

Graphics formats
●

Bitmaps
–
–

●

Without lossy compression
With Lossy Compression

Vector graphics

Pictures in
Jayant Apte, Drexel University

Pictures in

Bitmaps
●

●

●

Store image information as pixels with each
pixel of given color
Greater the resolution, better the quality
Greater the color-depth, better the quality(16
bits to represent intensity in a range is better
than 8-bits)

●

Better the quality, greater the storage size

●

Scaling and rotating affects picture quality

●

eg. PNG, JPEG, TIFF
Jayant Apte, Drexel University

Pictures in

One image to describe us all
Jayant Apte, Drexel University

The graphicx package

Pictures in
Jayant Apte, Drexel University

Pictures in

A SIMPLE ATTEMPT
Jayant Apte, Drexel University

Pictures in

How to use graphicx right

includegraphics[attr1=val1, attr2=val2, ..., attrn=valn]{imagename}
Jayant Apte, Drexel University

Pictures in

Attributes for graphicx
Attribute

Type

Description

scale

number

width

length

The width to which the figure
should be scaled

height

length

The height to which the figure
should be scaled

totalheight

length

Height plus depth of figure (to be
used if figure is rotated)

angle

number

Angle (in degrees) by which the
figure is to be rotated counterclockwise

origin

3d coordinates

A magnification factor

The point about which rotation is
to occur
Jayant Apte, Drexel University

Scale attribute

Pictures in
Jayant Apte, Drexel University

Pictures in

Width and Height(and some placement)
Jayant Apte, Drexel University

Pictures in

Graphicx contd...
●

●

●

The image included using graphicx will be
treated by TeX as a gigantic letter.
Hence all text alignment commands work with
images added using graphicx
Pictures appear exactly where you used
includegraphics{}

●

No caption
Jayant Apte, Drexel University

Side-by-side pictures

Pictures in
Jayant Apte, Drexel University

More pictures

Pictures in
Jayant Apte, Drexel University

Pictures in

Floats in
and
The figure environment
Jayant Apte, Drexel University

Pictures in

Floats
●

●
●

●

●
●

Floats are containers for things in a document that
cannot be broken over a page.
LaTeX by default recognizes "table" and "figure" floats
Not part of the normal stream of text, but separate
entities
If not specified explicitly, LaTeX automatically places
them where they fit the best
Always have a caption describing them
Always numbered so they can be referred to from
elsewhere in the text
Jayant Apte, Drexel University

Adding a float

Pictures in
Jayant Apte, Drexel University

Pictures in

Adding a picture inside a float
Jayant Apte, Drexel University

The auto placement

Pictures in
Jayant Apte, Drexel University

Pictures in

Overriding auto-placement - [h]

[h]=place float here
Jayant Apte, Drexel University

Pictures in

Figure placement specifiers
Specifier

Permission

h

Place the float here, i.e., approximately at the same
point it occurs in the source text (however, not exactly
at the spot)

t

Position at the top of the page

b

Position at the bottom of the page.

p

Put on a special page for floats only.

!

Override internal parameters LaTeX uses for
determining "good" float positions.
Jayant Apte, Drexel University

Pictures in

Citing figures inside document

Give your figure a label

Cite using that label
Jayant Apte, Drexel University

Pictures in

The sub-figure package
●

This package provides support for the manipulation and
reference of small or ‘sub’ figures and tables within a single
figure or table environment

●

Sub-figures can be separately captioned, referenced

●

Captions can be included in the List-of-Figures

●

Usage(inside figure):
subfigure[<caption>]{<Everything one would have for normal figure>}
Jayant Apte, Drexel University

Pictures in

Using sub-figure package
Jayant Apte, Drexel University

Pictures in

Using sub-figure package

Simply use nextline to
create rows of figures
Jayant Apte, Drexel University

Pictures in

Vector Graphics
●

●

Made with lines, Bézier curves, polygons and
circles
The mathematical properties of these objects
parameters are stored

●

Easy to scale or rotate without loss of quality

●

Use less memory

●

eg. .eps
Jayant Apte, Drexel University

Pictures in

How to create vector graphics
●

OmniGraffle(Mac Only)

●

Inkscape

●

PSTricks

●

Any wrapper to PStricks
Jayant Apte, Drexel University

Pictures in

Inkscape
Jayant Apte, Drexel University

Pictures in

The power of vector graphics
Jayant Apte, Drexel University

Pictures in

The power of vector graphics
Jayant Apte, Drexel University

Pictures in

PSTricks
●

●

PSTricks is a set of macros that allow the
inclusion of PostScript drawings directly inside
TeX or LaTeX code
Written by Timothy Van Zandt and has been
maintained in recent years by Denis Girou,
Sebastian Rahtz and Herbert Voss

●

It is a way of creating pictures by typing code

●

While very useful, it has a learning curve
Jayant Apte, Drexel University

PSTricks example

begin{pspicture}(5,5)
%% Triangle in red:
psline[linecolor=red](1,1)(5,1)(1,4)(1,1)
%% Bezier curve in green:
pscurve[linecolor=green,linewidth=2pt,%
showpoints=true](5,5)(3,2)(4,4)(2,3)
%% Circle in blue with radius 1:
pscircle[linecolor=blue,linestyle=dashed](3,2.5){1}
end{pspicture}

Pictures in
Jayant Apte, Drexel University

Pictures in

LaTeXDraw: A way around
complications of PSTricks
●

●

LaTeXDraw is a graphical drawing editor for
LaTeX
LaTeXDraw can be used to:
1) generate PSTricks code
2) directly create PDF or PS pictures

●

●

LaTeXDraw is developed in Java and thus
runs on top of Linux, Windows, and Mac OS X
Download Link
Jayant Apte, Drexel University

Pictures in

LaTeXDraw: Demonstration
Jayant Apte, Drexel University

Pictures in

Using LaTeXDraw generated
script in TexWorks
Go to Edit->Preferences
Create a new typesetting tool called
pdflatex+shellescape
with shown arguments
Jayant Apte, Drexel University

Pictures in

In persentations
●

One can use beamer like Gregory

●

Or one can use TexMaths extension to LibreOffice

●

●

●

TexMaths is an addon designed to provide LaTeX
support into LibreOffice
LaTeX equations can be inserted as images (SVG
or PNG formats)
the LaTeX code is saved into the image attribute for
further editing
Jayant Apte, Drexel University

Pictures in

TeXMaths Installation for Linux
Installation on Linux
●

●

●

●

●

●

Install TexLive (on Debian based systems : sudo apt-get install texlive).
Optionally install dvipng (on Debian based systems : sudo apt-get install
dvipng).
Optionally install dvisvgm (version 1.0.8 or later, deb package is here and
rpm package is here).
Open LibreOffice Writer and install the TexMaths extension using the
Tools / Extension manager menu.
Close and reopen LibreOffice Writer. You will see the new TexMaths
toolbar. Click on the TexMaths System Configuration icon and fill the paths
of your programs (usually /usr/bin for all).
Run TexMaths by clicking on one of the TexMaths Equations icons

Link for Installation on other Oss:

TexMaths Installation

Contenu connexe

Similaire à Latex Workshop Tutorial

Vector graphics
Vector graphicsVector graphics
Vector graphics
lenance
 
Raster Vs. Vector Presentation1
Raster Vs. Vector Presentation1Raster Vs. Vector Presentation1
Raster Vs. Vector Presentation1
cdoeberl
 
Basics Of Photoshop
Basics Of PhotoshopBasics Of Photoshop
Basics Of Photoshop
karimnadir
 

Similaire à Latex Workshop Tutorial (20)

Ms Visio
Ms VisioMs Visio
Ms Visio
 
CuRious about R in Power BI? End to end R in Power BI for beginners
CuRious about R in Power BI? End to end R in Power BI for beginners CuRious about R in Power BI? End to end R in Power BI for beginners
CuRious about R in Power BI? End to end R in Power BI for beginners
 
Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
Vector graphics
Vector graphicsVector graphics
Vector graphics
 
Automatic Task-based Code Generation for High Performance DSEL
Automatic Task-based Code Generation for High Performance DSELAutomatic Task-based Code Generation for High Performance DSEL
Automatic Task-based Code Generation for High Performance DSEL
 
Raster vs vector
Raster vs vectorRaster vs vector
Raster vs vector
 
Unit 51 task 1 powerpoint
Unit 51 task 1 powerpointUnit 51 task 1 powerpoint
Unit 51 task 1 powerpoint
 
R programmingmilano
R programmingmilanoR programmingmilano
R programmingmilano
 
Basics of LaTeX
Basics of LaTeXBasics of LaTeX
Basics of LaTeX
 
Pprofessional skills VII.pptx
Pprofessional skills VII.pptxPprofessional skills VII.pptx
Pprofessional skills VII.pptx
 
Technical file
Technical fileTechnical file
Technical file
 
Pixel and resolution
Pixel and resolutionPixel and resolution
Pixel and resolution
 
Raster Vs. Vector Presentation1
Raster Vs. Vector Presentation1Raster Vs. Vector Presentation1
Raster Vs. Vector Presentation1
 
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
Introduction To TensorFlow | Deep Learning Using TensorFlow | TensorFlow Tuto...
 
Mypreson 27
Mypreson 27Mypreson 27
Mypreson 27
 
Presentation
PresentationPresentation
Presentation
 
Project presentation image compression by manish myst, ssgbcoet
Project presentation image compression by manish myst, ssgbcoetProject presentation image compression by manish myst, ssgbcoet
Project presentation image compression by manish myst, ssgbcoet
 
Basics Of Photoshop
Basics Of PhotoshopBasics Of Photoshop
Basics Of Photoshop
 
R-Tree Implementation of Image Databases
R-Tree Implementation of Image DatabasesR-Tree Implementation of Image Databases
R-Tree Implementation of Image Databases
 
Empowerment Technology Lesson 3
Empowerment Technology Lesson 3Empowerment Technology Lesson 3
Empowerment Technology Lesson 3
 

Plus de Jayant Apte, PhD

Plus de Jayant Apte, PhD (9)

McKay's Algorithm for Isomorph-free Exhaustive Generation
McKay's Algorithm for Isomorph-free Exhaustive GenerationMcKay's Algorithm for Isomorph-free Exhaustive Generation
McKay's Algorithm for Isomorph-free Exhaustive Generation
 
ISIT 2014, Hawaii presentation
ISIT 2014, Hawaii presentationISIT 2014, Hawaii presentation
ISIT 2014, Hawaii presentation
 
Adjacency Decomposition Method: Breaking up problems
Adjacency Decomposition Method: Breaking up problemsAdjacency Decomposition Method: Breaking up problems
Adjacency Decomposition Method: Breaking up problems
 
Entropic Inequalities and marginal problems (Fritz and Chavez)
Entropic Inequalities and marginal problems (Fritz and Chavez) Entropic Inequalities and marginal problems (Fritz and Chavez)
Entropic Inequalities and marginal problems (Fritz and Chavez)
 
Exact Repair problems with multiple sources: CISS 2014
Exact Repair problems with multiple sources: CISS 2014Exact Repair problems with multiple sources: CISS 2014
Exact Repair problems with multiple sources: CISS 2014
 
Network Coding for Distributed Storage Systems(Group Meeting Talk)
Network Coding for Distributed Storage Systems(Group Meeting Talk)Network Coding for Distributed Storage Systems(Group Meeting Talk)
Network Coding for Distributed Storage Systems(Group Meeting Talk)
 
Candidacy Exam Talk
Candidacy Exam TalkCandidacy Exam Talk
Candidacy Exam Talk
 
Jayant lrs
Jayant lrsJayant lrs
Jayant lrs
 
Jayant chm
Jayant chmJayant chm
Jayant chm
 

Dernier

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
SoniaTolstoy
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 

Dernier (20)

Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 

Latex Workshop Tutorial

  • 1. Jayant Apte, Drexel University Pictures in PICTURES IN IN PRESENTATIONS Sponsored by IGSA, DIG, and GSA JAYANT APTE PhD Candidate Drexel University
  • 2. Jayant Apte, Drexel University Pictures in Outline External graphics formats ● Importing bitmap graphics – – – package Figure environment The sub-figure environment Creating and importing vector graphics Creating vector graphics inside ● The package ● Latex-draw interface to pstricks ● LibreOffice with TexMaths ●
  • 3. Jayant Apte, Drexel University Graphics formats ● Bitmaps – – ● Without lossy compression With Lossy Compression Vector graphics Pictures in
  • 4. Jayant Apte, Drexel University Pictures in Bitmaps ● ● ● Store image information as pixels with each pixel of given color Greater the resolution, better the quality Greater the color-depth, better the quality(16 bits to represent intensity in a range is better than 8-bits) ● Better the quality, greater the storage size ● Scaling and rotating affects picture quality ● eg. PNG, JPEG, TIFF
  • 5. Jayant Apte, Drexel University Pictures in One image to describe us all
  • 6. Jayant Apte, Drexel University The graphicx package Pictures in
  • 7. Jayant Apte, Drexel University Pictures in A SIMPLE ATTEMPT
  • 8. Jayant Apte, Drexel University Pictures in How to use graphicx right includegraphics[attr1=val1, attr2=val2, ..., attrn=valn]{imagename}
  • 9. Jayant Apte, Drexel University Pictures in Attributes for graphicx Attribute Type Description scale number width length The width to which the figure should be scaled height length The height to which the figure should be scaled totalheight length Height plus depth of figure (to be used if figure is rotated) angle number Angle (in degrees) by which the figure is to be rotated counterclockwise origin 3d coordinates A magnification factor The point about which rotation is to occur
  • 10. Jayant Apte, Drexel University Scale attribute Pictures in
  • 11. Jayant Apte, Drexel University Pictures in Width and Height(and some placement)
  • 12. Jayant Apte, Drexel University Pictures in Graphicx contd... ● ● ● The image included using graphicx will be treated by TeX as a gigantic letter. Hence all text alignment commands work with images added using graphicx Pictures appear exactly where you used includegraphics{} ● No caption
  • 13. Jayant Apte, Drexel University Side-by-side pictures Pictures in
  • 14. Jayant Apte, Drexel University More pictures Pictures in
  • 15. Jayant Apte, Drexel University Pictures in Floats in and The figure environment
  • 16. Jayant Apte, Drexel University Pictures in Floats ● ● ● ● ● ● Floats are containers for things in a document that cannot be broken over a page. LaTeX by default recognizes "table" and "figure" floats Not part of the normal stream of text, but separate entities If not specified explicitly, LaTeX automatically places them where they fit the best Always have a caption describing them Always numbered so they can be referred to from elsewhere in the text
  • 17. Jayant Apte, Drexel University Adding a float Pictures in
  • 18. Jayant Apte, Drexel University Pictures in Adding a picture inside a float
  • 19. Jayant Apte, Drexel University The auto placement Pictures in
  • 20. Jayant Apte, Drexel University Pictures in Overriding auto-placement - [h] [h]=place float here
  • 21. Jayant Apte, Drexel University Pictures in Figure placement specifiers Specifier Permission h Place the float here, i.e., approximately at the same point it occurs in the source text (however, not exactly at the spot) t Position at the top of the page b Position at the bottom of the page. p Put on a special page for floats only. ! Override internal parameters LaTeX uses for determining "good" float positions.
  • 22. Jayant Apte, Drexel University Pictures in Citing figures inside document Give your figure a label Cite using that label
  • 23. Jayant Apte, Drexel University Pictures in The sub-figure package ● This package provides support for the manipulation and reference of small or ‘sub’ figures and tables within a single figure or table environment ● Sub-figures can be separately captioned, referenced ● Captions can be included in the List-of-Figures ● Usage(inside figure): subfigure[<caption>]{<Everything one would have for normal figure>}
  • 24. Jayant Apte, Drexel University Pictures in Using sub-figure package
  • 25. Jayant Apte, Drexel University Pictures in Using sub-figure package Simply use nextline to create rows of figures
  • 26. Jayant Apte, Drexel University Pictures in Vector Graphics ● ● Made with lines, Bézier curves, polygons and circles The mathematical properties of these objects parameters are stored ● Easy to scale or rotate without loss of quality ● Use less memory ● eg. .eps
  • 27. Jayant Apte, Drexel University Pictures in How to create vector graphics ● OmniGraffle(Mac Only) ● Inkscape ● PSTricks ● Any wrapper to PStricks
  • 28. Jayant Apte, Drexel University Pictures in Inkscape
  • 29. Jayant Apte, Drexel University Pictures in The power of vector graphics
  • 30. Jayant Apte, Drexel University Pictures in The power of vector graphics
  • 31. Jayant Apte, Drexel University Pictures in PSTricks ● ● PSTricks is a set of macros that allow the inclusion of PostScript drawings directly inside TeX or LaTeX code Written by Timothy Van Zandt and has been maintained in recent years by Denis Girou, Sebastian Rahtz and Herbert Voss ● It is a way of creating pictures by typing code ● While very useful, it has a learning curve
  • 32. Jayant Apte, Drexel University PSTricks example begin{pspicture}(5,5) %% Triangle in red: psline[linecolor=red](1,1)(5,1)(1,4)(1,1) %% Bezier curve in green: pscurve[linecolor=green,linewidth=2pt,% showpoints=true](5,5)(3,2)(4,4)(2,3) %% Circle in blue with radius 1: pscircle[linecolor=blue,linestyle=dashed](3,2.5){1} end{pspicture} Pictures in
  • 33. Jayant Apte, Drexel University Pictures in LaTeXDraw: A way around complications of PSTricks ● ● LaTeXDraw is a graphical drawing editor for LaTeX LaTeXDraw can be used to: 1) generate PSTricks code 2) directly create PDF or PS pictures ● ● LaTeXDraw is developed in Java and thus runs on top of Linux, Windows, and Mac OS X Download Link
  • 34. Jayant Apte, Drexel University Pictures in LaTeXDraw: Demonstration
  • 35. Jayant Apte, Drexel University Pictures in Using LaTeXDraw generated script in TexWorks Go to Edit->Preferences Create a new typesetting tool called pdflatex+shellescape with shown arguments
  • 36. Jayant Apte, Drexel University Pictures in In persentations ● One can use beamer like Gregory ● Or one can use TexMaths extension to LibreOffice ● ● ● TexMaths is an addon designed to provide LaTeX support into LibreOffice LaTeX equations can be inserted as images (SVG or PNG formats) the LaTeX code is saved into the image attribute for further editing
  • 37. Jayant Apte, Drexel University Pictures in TeXMaths Installation for Linux Installation on Linux ● ● ● ● ● ● Install TexLive (on Debian based systems : sudo apt-get install texlive). Optionally install dvipng (on Debian based systems : sudo apt-get install dvipng). Optionally install dvisvgm (version 1.0.8 or later, deb package is here and rpm package is here). Open LibreOffice Writer and install the TexMaths extension using the Tools / Extension manager menu. Close and reopen LibreOffice Writer. You will see the new TexMaths toolbar. Click on the TexMaths System Configuration icon and fill the paths of your programs (usually /usr/bin for all). Run TexMaths by clicking on one of the TexMaths Equations icons Link for Installation on other Oss: TexMaths Installation