Created
September 7, 2019 14:50
-
-
Save dorchard/50b06ca210b52e839786f049da66bc00 to your computer and use it in GitHub Desktop.
newpaper - A script that generate a fresh paper stub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cp ~/template.tex paper.tex | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| \usepackage{amsmath} | |
| \usepackage{amssymb} | |
| \usepackage{amsfonts} | |
| \usepackage{stmaryrd} | |
| \usepackage[dvips,usenames]{color} | |
| \newcommand{\dnote}[1]{\textcolor{blue}{DAO: #1}} | |
| \title{} | |
| \begin{document} | |
| Hi | |
| \end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment