3

I have a drawing saved as .vsdx file (made in visio 2013). How do I convert it to the .eps format (or any vectorized format preserving its fonts, pixels etc.) to be used later as LaTeX figure?

  • Why not use "Export" instead in Visio 2013? The 2013 Visio has Export bar, which seems it embeds and preserves everything, eliminating the need to convert to .eps or any other vector-graphic supporting format. Isn't that true? can't I just use this Export function and turn my drawing into *.pdf (preserving its pixel and font) to be later used in LaTeX?

AN EASYIER WAY: Why not instead use "Export" in Visio 2013 onwards!

Hans
  • 31
  • 1
  • 4
  • @Hastur: So Visio 2013 does it all, without the difficulty of going through any third party software (this was not possible in earlier version of Visio). I suggest all you guys take advantage of it. – Hans Oct 03 '15 at 01:20
  • See also http://tex.stackexchange.com/questions/26484/whats-the-best-way-to-embed-visio-diagrams – knut Feb 29 '16 at 10:49

2 Answers2

1

Visio -> Save As -> vectorized file format e.g. *.svg, *.wmf, *.emf ...

h0ch5tr4355
  • 1,003
  • 1
  • 9
  • 25
  • I don't know how to work with .SVG later in LaTeX. How about .eps? I don't have it in my save as section! – Hans Oct 02 '15 at 11:06
  • Windows doesn't provide _.eps_. As a workaround you can - e.g. with IrfanView (http://www.irfanview.com/) - create a _.pdf_ out of the vector format and _.pdf_ can be used in LaTeX... – h0ch5tr4355 Oct 02 '15 at 11:09
  • There are also opportunities which make you able to use the formats from above in latex, however they are much more complicated imho. – h0ch5tr4355 Oct 02 '15 at 11:11
  • can't I use adobe products to get the same .pdf file preserving all? – Hans Oct 02 '15 at 11:11
  • You can try it, however I am not sure if the vector properties keep existing or whether it works in general but worth a try for sure. I have no Visio ready here and so I can't test it for myself at the moment. – h0ch5tr4355 Oct 02 '15 at 11:12
  • 1
    In Latex you can add packages to your file and import and use different formats `svg` included. After it will be a question if you are bounded to use or not that specific package by the eventual editor... but usually there are no problem. __Warning__ Seldom `pdf` and `eps` images created under Windows presented problems with automatic submission of paper, just because there where the preview inside. – Hastur Oct 02 '15 at 11:32
0

You need to test with some attempts, but start saving it in vectorial form.

After you can use any program to change your format in eps as for example inkscape or convert from imagemagick.

Note that with Latex you can add some packages and import directly images with different formats.

\documentclass{article}
\usepackage{svg}
....

See for example here.

Hastur
  • 18,764
  • 9
  • 52
  • 95