I have a vector grahpics file. Could someone please help me embed a image into my LaTeX document ? I have no clue.
-
2What kind of vector graphics file? – Werner Apr 16 '12 at 04:11
-
Are you using pdfLaTeX or plain LaTeX? – Jake Apr 16 '12 at 06:09
-
1Is it possible to use a PDF as a container for a vector graphic and include the PDF then? Or can eps contain vector graphics? – Keks Dose Apr 16 '12 at 06:53
3 Answers
There are several vector graphics format in use these days by vector graphics packages, the most common ones being pdf, eps, and svg.
SVG tends to be the de facto internal working format for most of them these days, and it is a very good format for web applications as most browser will be able to display them natively. However, unfortunately, svg is currently not supported in LaTeX documents.
The historical format for vector graphics in TeX is eps and it is indeed the only format supported by the original latex, even for raster based images (indeed, all these file formats can contain both vector and raster based images).
With the graphicx package, and pdflatex (and newer incarnations such as xelatex and lualatex) you can now include raster files such as jpg, png, and so on, without having to put them in a eps container, and you can also include pdf files, however you lose the ability to include eps files.
Most graphics packages will allow you to export as eps or pdf so you can choose at the time which format you want. Alternatively, you can easily convert from one format to the other with command line tools such as epstopdf.
As for which format is better, this is open for debate, pdf is basically built on eps with more features such as embed fonts, including ttf and otf ones, and compressibility (so a pdf will usually be smaller than an eps) among others. People will usually also have something installed on there computer that reads pdf, whereas, eps may be an issue.
- 17,315
-
2
svgis currently not supported in LaTeX documents!!! how is this even possible? Oh! perhaps relevant forsvg: How to include SVG diagrams in LaTeX? – nilon Jan 18 '17 at 23:59
There is one svg.sty that you have to import into your system latex directory {texmf/tex/latex/svg }. You can then use
\usepackage{svg}\includesvg[svgpath = images/]{example}or\includesvg{example}%file name is example without .svg extension.
Refer -
- 63,575
- 11
-
7The
svgpackage usesinkscapeto convert SVG file into PDF file before inclusion in the final document. It requires the-shell-escapeoption... – Paul Gaborit Jan 28 '15 at 12:46
I guess you may want to export the graphics to the EPS format. EPS is fully supported by TEX in the figure environment. You'll need this in preamble:
\usepackage{epsfig}
Then the figures are added as shown below:
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{ris00.eps}
\end{figure}
- 415
-
7
-
1
-
@Alexandre With the last pdftex, I think you don't need to add
\usepackage{epstopdf}– Alain Matthes Apr 16 '12 at 05:56 -
13The package
epsfigis distributed only for compatibility with legacy documents and should not be used in new documents;graphicxis the real solution. – egreg Apr 16 '12 at 05:57 -
@Altermundus: I needed to add: http://tex.stackexchange.com/a/52026/9237. – Speravir Apr 16 '12 at 12:59