initial commit

This commit is contained in:
Alain Zscheile 2024-07-12 12:56:05 +02:00
commit 641b6d1870
4 changed files with 63 additions and 0 deletions

31
.gitignore vendored Normal file
View file

@ -0,0 +1,31 @@
.nfs*
**/auto/*
**/build/*
**/target/*
*~
.#*
# LaTeX
luahbtex.core
*.aux
*.bbl
*.bcf
*.blg
*.fdb_latexmk
*.fls
*.glg
*.glo
*.gls
*.ilg
*.ind
*.ist
*.lof
*.log
*.lot
*.out
*.pdf
*.ps
*.run.xml
*.synctex.gz
*.toc
*.xdv

2
README.md Normal file
View file

@ -0,0 +1,2 @@
# roqfy

6
docs/build.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
lualatex roqfy.tex
biber roqfy.bcf
lualatex roqfy.tex
lualatex roqfy.tex

24
docs/roqfy.tex Normal file
View file

@ -0,0 +1,24 @@
\documentclass[11pt,numbers=noenddot,a4paper,pagesize]{scrartcl}
\usepackage[english]{babel}
\usepackage[autostyle]{csquotes}
\usepackage[fleqn]{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{unicode-math}
\usepackage{bussproofs}
\usepackage{todonotes}
\setuptodonotes{size=\tiny}
%%% metadata
\title{Roqfy}
\author{Alain Emilia Anna Zscheile}
\date{\today{}, Germany}
\begin{document}
\maketitle
\end{document}