Courses notes from ECE 657 Tools of Intelligent System Design at UWaterloo.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Arthur Grisel-Davy 6b22d4a0a8 test figure import 2 years ago
.gitignore prep work 2 years ago
main.tex test figure import 2 years ago
readme.md test figure import 2 years ago
requirements.txt initialization 2 years 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}