diff options
author | Marvin Borner | 2022-05-31 14:17:19 +0200 |
---|---|---|
committer | Marvin Borner | 2022-05-31 14:17:19 +0200 |
commit | b8be82d9113dd0fec9021aa573039cc64dbd849a (patch) | |
tree | 0694d21e5ba03e843dc6f03d1c5b1ed033123875 /.boilerplates/tex | |
parent | 272cc6e941d798d7270fcf74a98f592ef06e14ac (diff) |
Clean
Diffstat (limited to '.boilerplates/tex')
-rw-r--r-- | .boilerplates/tex/.gitignore | 5 | ||||
-rw-r--r-- | .boilerplates/tex/bib/main.bib | 5 | ||||
-rw-r--r-- | .boilerplates/tex/main.tex | 51 | ||||
-rwxr-xr-x | .boilerplates/tex/run | 7 |
4 files changed, 0 insertions, 68 deletions
diff --git a/.boilerplates/tex/.gitignore b/.boilerplates/tex/.gitignore deleted file mode 100644 index f01a3df..0000000 --- a/.boilerplates/tex/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -*.log -*.bbl -*.blg - -build/ diff --git a/.boilerplates/tex/bib/main.bib b/.boilerplates/tex/bib/main.bib deleted file mode 100644 index e7b117b..0000000 --- a/.boilerplates/tex/bib/main.bib +++ /dev/null @@ -1,5 +0,0 @@ -@book{beispiel, - author = {Borner, Marvin}, - year = {2020}, - title = {Dies ist ein Beispiel}, -} diff --git a/.boilerplates/tex/main.tex b/.boilerplates/tex/main.tex deleted file mode 100644 index 485184b..0000000 --- a/.boilerplates/tex/main.tex +++ /dev/null @@ -1,51 +0,0 @@ -\documentclass[a4paper]{article} - -% Packages -\usepackage[a4paper, inner=2.5cm, outer=2.5cm, top=2.5cm, bottom=2cm, bindingoffset=0cm]{geometry} -\usepackage{amsmath,amsthm,amssymb,amsfonts} -\usepackage{graphicx} -\usepackage[colorlinks=true, allcolors=blue]{hyperref} -\usepackage{fontspec,xunicode,xltxtra} -\usepackage{biblatex} - -% GERMAN -%\usepackage[ngerman=ngerman-x-latest]{hyphsubst} -%\usepackage[ngerman]{babel} - -% ENGLISH -\usepackage[USenglish]{babel} -\usepackage{hyphsubst} - -% Figures -\graphicspath{{figures/}} - -% Citations -\addbibresource{bib/main.bib} - -\begin{document} - -\title{Awesome paper} -\author{Marvin Borner} -\date{\today} - -\maketitle - -%\tableofcontents - -\begin{abstract} - Writing a professional paper in latex can be hard and exhausting. It takes a long time to compile but it's just the best option if you need a flawless vectorized font with a specific instruction set. -\end{abstract} - -\section{Introduction} -Welcome back! - -\begin{equation} - \label{simple_equation} - \alpha = \sqrt{\beta} -\end{equation} - -%\includegraphics[width=0.5\textwidth]{test} - -%\printbibliography[heading=bibintoc] - -\end{document} diff --git a/.boilerplates/tex/run b/.boilerplates/tex/run deleted file mode 100755 index e2a969a..0000000 --- a/.boilerplates/tex/run +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env sh - -mkdir -p build/ && - xelatex --output-directory=build/ main && - biber --input-directory=build/ main && - xelatex --output-directory=build/ main && - zathura build/main.pdf |