Courses notes from ECE 657 Tools of Intelligent System Design at UWaterloo.
Go to file
2022-06-21 22:04:06 -04:00
images feat: some stuff 2022-06-07 12:07:15 -04:00
.gitignore feat: add section about perceptron and add all images and sources 2022-05-19 11:10:27 -04:00
main.tex RNN 2022-06-21 22:04:06 -04:00
readme.md test figure import 2022-05-02 15:04:36 -04:00
requirements.txt feat: add simple linear regression 2022-05-12 11:33:54 -04:00

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}