Commit 19e6a41c authored by Martin Ukrop's avatar Martin Ukrop Committed by overleaf
Browse files

Update on Overleaf.

parent 499f59c5
Loading
Loading
Loading
Loading

.gitignore

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
# TeX documents for individual students
*.tex

# compiled documents
*.pdf

# TeX intermediary files
*.aux
*.dvi
*.log
*.synctex.gz
*.out
*.nav
*.toc
*.snm
*.run.xml
*-blx.bib
*.bbl
*.blg
*.bcf

# other files
*.txss
forcefile

AUTHORS.txt

deleted100644 → 0
+0 −11
Original line number Diff line number Diff line
This work is a colaborative effort in the spirit of Open culture.
The thanks belong to all contributors listed below.

Martin Ukrop
Martin Jonáš
Henrich Lauko
Petr Sojka
Vladimír Štill
Nikola Beneš
Jiří Barnat
Vojtěch Řehák 

LICENSE

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
The MIT License (MIT)
Copyright (c) 2016 Martin Ukrop and other contributors (see 'AUTHORS' file)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Makefile

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
TEXS=$(wildcard *.tex)
PDFS=$(TEXS:.tex=.pdf)

all: $(PDFS) clean

clean:
	rm -f *.aux *.dvi *.log *.synctex.gz *.out *.nav *.toc *.snm *.run.xml *-blx.bib *.bbl *.blg *.bcf

%.pdf : %.tex fi-thesis-report.cls
	pdflatex $<
	pdflatex $<

.PHONY: all clean

README.md

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
FI thesis report
================

Unofficial LaTeX template for thesis reports at FI MU. Uses the new faculty visual style.

## Usage

* The project defines a new LaTeX document style 'fi-thesis-report' based on the traditional TeX class 'article'.
* The easiest way how to use the existing example file *thesis-report.tex*. Documentation of the important commands is provided in comments.
* To build the report correctly, it is necessary to **run the build twice** (faculty logo is included as PDF).
* The included Makefile builds all '.tex' files in the current directory (so it is convenient to store multiple reports right there).

## Tips and tricks

* All options passed to 'fi-thesis-report' are passed to the underlying 'article' class.
* If you prefer pandoc and markdown, see `pandoc/`
Loading