Graphics: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
mNo edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Formats ==
== Formats : creation, conversion and viewing softwares ==
* [http://en.wikipedia.org/wiki/PostScript Postcript] - EPS
* [http://en.wikipedia.org/wiki/PostScript Postcript] - EPS
* [http://en.wikipedia.org/wiki/Pdf PDF]
* [http://en.wikipedia.org/wiki/Pdf PDF]
* [http://en.wikipedia.org/wiki/DjVu DjVu]
* [http://en.wikipedia.org/wiki/DjVu DjVu]
==Format creation, conversion and viewing softwares (Free)==


* [http://pages.cs.wisc.edu/~ghost Ghostscript, Ghostview and GSview]
* [http://pages.cs.wisc.edu/~ghost Ghostscript, Ghostview and GSview]
Line 12: Line 10:
* [http://www.pstoedit.net pstoedit]
* [http://www.pstoedit.net pstoedit]


==Drawing softwares==
==Drawing and plotting softwares==
===Free===
===Free===


* [http://www.gnuplot.info gnuplot]
* [http://www.gnuplot.info gnuplot] (script) - [http://t16web.lanl.gov/Kawano/gnuplot/index-e.html Tips for Gnuplot]
* [http://plasma-gate.weizmann.ac.il/Grace xmgrace]
* [http://plasma-gate.weizmann.ac.il/Grace/ Xmgrace] (GUI) - [[Tips for Xmgrace]]
* [http://matplotlib.sourceforge.net Matplotlib]
* [http://matplotlib.sourceforge.net Matplotlib] ([[Python]])
* [http://asymptote.sourceforge.net Asymptote]
* [http://pyx.sourceforge.net PyX] ([[Python]])
* [http://inkscape.org Inkscape]
* [http://mayavi.sourceforge.net Mayavi] ([[Python]])
* [http://epb.lbl.gov/xfig Xfig]
* [http://asymptote.sourceforge.net Asymptote] (script)
* [http://www.skencil.org Skencil]
* [http://inkscape.org Inkscape] with [http://pav.iki.fi/software/textext Tex Text] extension for LaTeX formulas (GUI)
* [http://epb.lbl.gov/xfig Xfig] (GUI)
* [http://www.skencil.org Skencil] (GUI)
* [http://sketchup.google.com GoogleSketchUp] 3D software (GUI)
* [http://live.gnome.org/Dia Dia]
 
==== With Latex ====
 
* [http://sourceforge.net/projects/pgf/ PGF and TikZ] and [http://www.texample.net/tikz/examples/ Examples]


===Non free===
===Non free===
Line 27: Line 33:
* [http://www.adobe.com/products/illustrator Adobe Illustrator]
* [http://www.adobe.com/products/illustrator Adobe Illustrator]
* [http://www.mayura.com Mayura]
* [http://www.mayura.com Mayura]
* [http://www.mathworks.com Matlab]
== Tips ==
=== EPS Files===
* [http://www.guillaume.roux.free.fr/Tips/tips_for_eps_files.htm Tips for eps files]
* use ghostscript to remove comments and lighten an EPS file
<source lang="bash">
#!/bin/bash
for FILE in $* ; do
gs -r2400 -dBATCH -dNOPAUSE -dSAFER -q -dNOCACHE -sDEVICE=epswrite -sOutputFile=small_$FILE $FILE
done
</source>

Latest revision as of 09:11, 8 July 2013

Formats : creation, conversion and viewing softwares

Drawing and plotting softwares

Free

With Latex

Non free

Tips

EPS Files

<source lang="bash">

  1. !/bin/bash

for FILE in $* ; do gs -r2400 -dBATCH -dNOPAUSE -dSAFER -q -dNOCACHE -sDEVICE=epswrite -sOutputFile=small_$FILE $FILE done </source>