Latex command that I use.
pdflatex --file-line-error --synctex=1 --shell-escape test.tex
Note that this only works with inkscape on the path.
<?xml version="1.0"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg xmlns="http://www.w3.org/2000/svg" | |
width="467" height="462"> | |
<rect x="80" y="60" width="250" height="250" rx="20" | |
style="fill:#ff0000; stroke:#000000;stroke-width:2px;" /> | |
<rect x="140" y="120" width="250" height="250" rx="40" | |
style="fill:#0000ff; stroke:#000000; stroke-width:2px; | |
fill-opacity:0.7;" /> | |
</svg> |
\listfiles | |
\documentclass{article} | |
\usepackage[T1]{fontenc} | |
\usepackage{svg} | |
\usepackage{svg-extract} | |
\begin{document} | |
\begin{figure} | |
\centering | |
\includesvg[inkscapelatex=true, width=0.5\linewidth]{test.svg} | |
\caption{Some text.} | |
\label{name} | |
\end{figure} | |
\end{document} |