Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/malb/paper-template
skeleton LaTeX paper template
https://github.com/malb/paper-template
Last synced: 2 months ago
JSON representation
skeleton LaTeX paper template
- Host: GitHub
- URL: https://github.com/malb/paper-template
- Owner: malb
- Created: 2020-06-24T18:10:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-27T21:15:27.000Z (11 months ago)
- Last Synced: 2024-02-28T01:27:00.281Z (11 months ago)
- Language: TeX
- Size: 72.3 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+TITLE: project-name
* LaTeX Stuff
** Features
- [[https://cryptobib.di.ens.fr/][cryptobib]] bibliography
- [[http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/cryptocode/cryptocode.pdf][cryptocode]] macros
- ~\anonynmous{foo}{bar}~ to hide/show information during submission/after
- ~\tikzexternalizemaybe~ to enable ~tikzexternalize~ depending on value of ~buildexternal~
- [[https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html][~.dir-locals.el~]] according to my taste
- [[https://github.com/bbatsov/projectile][~.projectile~]] according to my taste
- Extensive ~.gitignore~** Assumptions
- The paper is in =paper=.
- Code goes into =code=.
- Data goes into =data=.
- Cryptobib is in a directory pointed to by ~BIBINPUTS=.:/path-to/cryptobib~
- Scripts write to ~paper/constants.tex~ for use with [[https://ctan.org/pkg/pgfkeys?lang=en][pgfkeys]].** Local Changes
If you want to do local modification to ~.dir-locals.el~ which is under version control, you can use
#+begin_src sh
git update-index --assume-unchanged .dir-locals.el
#+end_srcto tell git to ignore changes to that file. Use
#+begin_src sh
git update-index --no-assume-unchanged .dir-locals.el
#+end_srcto undo.