Commit 6ae3e4c4 authored by Vít Novotný's avatar Vít Novotný
Browse files

The user guide has been largely reworked. It now contains a full list of

class options, a list of `\thesissetup` keys relevant to the respective
faculty and detailed installation instructions. A section about the
recently added `\thesis@backend` macro was added to the Advanced usage
section.
parent 8c27aa4e
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,9 @@ DEVEXAMPLES=guide/EXAMPLE/DESCRIPTION guide/mu/DESCRIPTION \
	logo/DESCRIPTION style/EXAMPLE/DESCRIPTION style/mu/DESCRIPTION \
	logo/DESCRIPTION style/EXAMPLE/DESCRIPTION style/mu/DESCRIPTION \
	style/DESCRIPTION test/DESCRIPTION
	style/DESCRIPTION test/DESCRIPTION
EXAMPLES=$(USEREXAMPLES) $(DEVEXAMPLES)
EXAMPLES=$(USEREXAMPLES) $(DEVEXAMPLES)
MISCELLANEOUS=guide/*/*.tex guide/*/*/*.tex guide/*/*.bib
MISCELLANEOUS=guide/mu/resources/empty.tex guide/mu/guide.bib \
	guide/mu/guide.dtx guide/mu/resources/cog.pdf \
	guide/mu/resources/vader.pdf guide/mu/resources/yoda.pdf
RESOURCES=$(STYLEFILES) $(LOGOS) $(LOCALES)
RESOURCES=$(STYLEFILES) $(LOGOS) $(LOCALES)
SOURCES=$(DTXFILES) $(INSFILES) LICENSE.tex
SOURCES=$(DTXFILES) $(INSFILES) LICENSE.tex
AUXFILES=fithesis.aux fithesis.log fithesis.toc fithesis.ind \
AUXFILES=fithesis.aux fithesis.log fithesis.toc fithesis.ind \
+3 −4
Original line number Original line Diff line number Diff line
@@ -3,7 +3,7 @@ PDFFILES=fi.pdf sci.pdf ped.pdf med.pdf fss.pdf fsps.pdf phil.pdf \
TEX=pdflatex -shell-escape
TEX=pdflatex -shell-escape
.PHONY: all clean
.PHONY: all clean
all: clean
all: clean
	make all -C examples
	make all -C resources
	make $(PDFFILES) clean
	make $(PDFFILES) clean


# This target typesets a PDF file.
# This target typesets a PDF file.
@@ -11,7 +11,6 @@ all: clean
	$(TEX) $(basename $@).tex
	$(TEX) $(basename $@).tex
	biber  $(basename $@)
	biber  $(basename $@)
	$(TEX) $(basename $@).tex
	$(TEX) $(basename $@).tex
	$(TEX) $(basename $@).tex


# This target prepares a TeX file.
# This target prepares a TeX file.
%.tex: %.ins guide.dtx
%.tex: %.ins guide.dtx
@@ -20,10 +19,10 @@ all: clean
# This target removes any auxiliary files.
# This target removes any auxiliary files.
clean:
clean:
	rm -f *.aux *.log *.out *.toc *.lot *.lof *.bbl *.blg *.pyg \
	rm -f *.aux *.log *.out *.toc *.lot *.lof *.bbl *.blg *.pyg \
		*.bcf *-blx.bib *.run.xml
		*.bcf *-blx.bib *.run.xml *.tex
	rm -rf _minted-*
	rm -rf _minted-*


# This target removes any auxiliary files and the output files.
# This target removes any auxiliary files and the output files.
implode: clean
implode: clean
	make implode -C examples
	make implode -C resources
	rm -f $(PDFFILES)
	rm -f $(PDFFILES)
+1 −1
Original line number Original line Diff line number Diff line
\input ../../LICENSE
\input ../../LICENSE
\generate{\file{econ.tex}{\from{guide.dtx}{guide,econ}}}
\generate{\file{econ.tex}{\from{guide.dtx}{econ}}}
\endbatchfile
\endbatchfile

fithesis/guide/mu/examples/01.tex

deleted100644 → 0
+0 −4
Original line number Original line Diff line number Diff line
\thesissetup{basePath=../../..}
\begin{document}
  Hello world!
\end{document}
+0 −3
Original line number Original line Diff line number Diff line
\documentclass{../../../fithesis3}
\thesissetup{faculty=econ}
\input01
Loading