Initial commit

This commit is contained in:
Ian Jauslin
2018-04-07 07:16:28 +00:00
commit f2af89a0b6
26 changed files with 2331 additions and 0 deletions

25
figs/libs/Makefile Normal file
View File

@ -0,0 +1,25 @@
PROJECTNAME=$(basename $(basename $(wildcard *.tikz.tex)))
LIBS=$(notdir $(wildcard libs/*))
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
all: $(PDFS)
$(PDFS): $(LIBS)
echo $(LIBS)
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
$(LIBS):
ln -fs libs/$@ ./
clean-libs:
rm -f $(LIBS)
clean-aux:
rm -f $(addsuffix .aux, $(PROJECTNAME))
rm -f $(addsuffix .log, $(PROJECTNAME))
clean-tex:
rm -f $(PDFS)
clean: clean-libs clean-aux clean-tex

33
figs/libs/dimer.sty Normal file
View File

@ -0,0 +1,33 @@
% square lattice (width #1, height #2, origin #3)
\def\grid#1#2#3{
\foreach\i in {0,...,#2}{
\draw#3++(0,\i)--++(#1,0);
}
\foreach\i in {0,...,#1}{
\draw#3++(\i,0)--++(0,#2);
}
}
% dimer (bottom-left vertex #1, vertical or horizontal #2)
\def\dimer#1#2{
\if#2h
\draw[line width=5pt]#1--++(1,0);
\fill#1circle(7pt);
\fill#1++(1,0)circle(7pt);
\else
\draw[line width=5pt]#1--++(0,1);
\fill#1circle(7pt);
\fill#1++(0,1)circle(7pt);
\fi
}
% interactions (bottom-left vertex #1, vertical or horizontal #2)
\def\interaction#1#2{
\if#2h
\draw[line width=5pt, color=white]#1--++(1,0);
\draw[line width=4pt, decorate, decoration={snake}, color=red]#1--++(1,0);
\else
\draw[line width=5pt, color=white]#1--++(0,1);
\draw[line width=4pt, decorate, decoration={snake}, color=red]#1--++(0,1);
\fi
}