diff options
Diffstat (limited to '.boilerplates')
-rw-r--r-- | .boilerplates/txt/md.md | 9 | ||||
-rw-r--r-- | .boilerplates/txt/ms.ms | 19 | ||||
-rw-r--r-- | .boilerplates/txt/tex.tex | 23 |
3 files changed, 51 insertions, 0 deletions
diff --git a/.boilerplates/txt/md.md b/.boilerplates/txt/md.md new file mode 100644 index 0000000..a94ea2f --- /dev/null +++ b/.boilerplates/txt/md.md @@ -0,0 +1,9 @@ +--- +title: "Awesome paper" +date: \today +author: "Marvin Borner" +--- + +# Abstract + +Writing a professional paper in latex can be hard and exhausting. If you write your paper in `markdown` with `Pandoc` though, you can easily write professional-looking papers with almost no effort! diff --git a/.boilerplates/txt/ms.ms b/.boilerplates/txt/ms.ms new file mode 100644 index 0000000..766ae3f --- /dev/null +++ b/.boilerplates/txt/ms.ms @@ -0,0 +1,19 @@ +.TL +Awesome paper +.DA +.AU +Marvin Borner + +.AB +Writing a professional paper in latex can be hard and exhausting. If you write your paper in +.B groff +with +.B "ms macros" +though, you can easily write professional-looking papers with almost no effort +.B "and lightning speed"! +.AE + +.NH +Introduction +.PP +Good morning! diff --git a/.boilerplates/txt/tex.tex b/.boilerplates/txt/tex.tex new file mode 100644 index 0000000..9588fa4 --- /dev/null +++ b/.boilerplates/txt/tex.tex @@ -0,0 +1,23 @@ +\documentclass{article} +\usepackage{graphicx} + +\begin{document} + +\title{Awesome paper} +\author{Marvin Borner} + +\maketitle + +\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} + +\end{document} |