diff options
author | Marvin Borner | 2020-06-18 19:21:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-18 19:21:11 +0200 |
commit | fab2ca72e0bdebea01160a6d77ab5b62ff4e4316 (patch) | |
tree | 5b03d31ae24458f6f86e30399ae617834a9e29b2 /.boilerplates | |
parent | ed81a60c898949c3c72a07e78d6fe215fa3e2c8d (diff) |
Added text-based boilerplates and better previews
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} |