This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
74 changed files
with
718 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
PDFFILES=fi.pdf sci.pdf ped.pdf med.pdf fss.pdf fsps.pdf phil.pdf law.pdf econ.pdf | ||
TEXFILES=fi.tex sci.tex ped.tex med.tex fss.tex fsps.tex phil.tex law.tex econ.tex | ||
TEMPLATE=guide.tex | ||
BIB=guide.bib | ||
.PHONY: all clean | ||
all: | ||
make all -C examples | ||
make $(PDFFILES) clean | ||
|
||
# This target typesets the a PDF file. | ||
$(PDFFILES): $(TEMPLATE) $(BIB) | ||
sed s/faculty=?/faculty=$(basename $@)/ $(TEMPLATE) > $(basename $@).tex | ||
pdflatex -shell-escape $(basename $@).tex | ||
biber $(basename $@) | ||
pdflatex -shell-escape $(basename $@).tex | ||
|
||
# This target removes any auxiliary files. | ||
clean: | ||
rm -f $(TEXFILES) *.aux *.log *.out *.toc *.lot *.lof *.bbl *.blg *.pyg *.bcf *-blx.bib *.run.xml | ||
|
||
# This target removes any auxiliary files | ||
# and the output PDF files. | ||
implode: clean | ||
make implode -C examples | ||
rm -f $(PDFFILES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
\thesissetup{basepath=../../..} | ||
\begin{document} | ||
Hello world! | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{ | ||
faculty=fi, | ||
basepath=../../.., | ||
autoLayout=false} | ||
\begin{document} | ||
A document which, except for this line, | ||
is completely empty. | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
PDFFILES=econ-01.pdf fi-01.pdf fsps-01.pdf fss-01.pdf law-01.pdf med-01.pdf ped-01.pdf phil-01.pdf sci-01.pdf 02.pdf | ||
.PHONY: all clean | ||
all: $(PDFFILES) clean | ||
|
||
# This target typesets the a PDF file. | ||
%.pdf: %.tex | ||
pdflatex $< | ||
pdflatex $< | ||
|
||
# This target removes any auxiliary files. | ||
clean: | ||
rm -f *.aux *.log *.out *.toc *.lot *.lof | ||
|
||
# This target removes any auxiliary files | ||
# and the output PDF files. | ||
implode: clean | ||
rm -f $(PDFFILES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{faculty=econ} | ||
\input01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{faculty=fi} | ||
\input01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{faculty=fsps} | ||
\input01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{faculty=fss} | ||
\input01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
\documentclass{../../../fithesis3} | ||
\thesissetup{faculty=law} | ||
\input01 |
Oops, something went wrong.