├── .gitignore ├── LICENSE ├── README.md ├── bibliography.bibtex ├── citation.csl ├── images ├── by-sa.pdf ├── kitten.jpg └── qrcode.png ├── makefile ├── presentation-header.tex ├── presentation-toc.tex ├── presentation.md ├── presentation.pdf ├── presentation.tex ├── report-footer.tex ├── report-header.tex ├── report.md ├── report.pdf └── report.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/README.md -------------------------------------------------------------------------------- /bibliography.bibtex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/bibliography.bibtex -------------------------------------------------------------------------------- /citation.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/citation.csl -------------------------------------------------------------------------------- /images/by-sa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/images/by-sa.pdf -------------------------------------------------------------------------------- /images/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/images/kitten.jpg -------------------------------------------------------------------------------- /images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/images/qrcode.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/makefile -------------------------------------------------------------------------------- /presentation-header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/presentation-header.tex -------------------------------------------------------------------------------- /presentation-toc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/presentation-toc.tex -------------------------------------------------------------------------------- /presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/presentation.md -------------------------------------------------------------------------------- /presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/presentation.pdf -------------------------------------------------------------------------------- /presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/presentation.tex -------------------------------------------------------------------------------- /report-footer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/report-footer.tex -------------------------------------------------------------------------------- /report-header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/report-header.tex -------------------------------------------------------------------------------- /report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/report.md -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/report.pdf -------------------------------------------------------------------------------- /report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JensErat/scientific-markdown/HEAD/report.tex --------------------------------------------------------------------------------