You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12 months ago | |
---|---|---|
images | 1 year ago | |
.gitignore | 1 year ago | |
main.tex | 12 months ago | |
readme.md | 1 year ago | |
requirements.txt | 1 year ago |
readme.md
Installation:
tinytex:
wget -qO- "https://yihui.org/tinytex/install-bin-unix.sh" | sh
packages:
tlmgr install `cat requirements.txt`
Usage:
Save .svg
files from latex and convert them before compiling the document with
inkscape -D -z file=images/plop.svg export-pdf=images/image.pdf --export-latex
For converting all hte figures:
find images/. -name "*.svg" -exec inkscape -D -z file=images/{} --export-latex \;
Include the figure in hte document with
\begin{figure}
\centering
\import{images/}{test.pdf_tex}
\end{figure}