paperer is a lightweight executable to quickly scaffold LaTeX projects.
Starting a new manuscript can be a tedious process, and often requires copying
files from previous projects, or searching for templates online. paperer aims
to simplify this process by providing a simple executable that can be used to
scaffold a new version-controlled manuscript in LaTeX based on a given
template. A template is simply a collection of files that make up a manuscript.
Currently, paperer provides a mainly APA template, but more templates are
welcomed as contributions (i.e., see the Contributing section).
Alternatively, you can use your own templates by specifying the source directory
where to look for the template files (i.e., see the Usage section). In
a nutshell, the idea behind paperer is that any bit of friction is too much
friction—therefore, just install it once and run it anytime you want to
start writing a new manuscript.
paperer is build for macOS and other Unix-based operating systems.
However, support for Windows may be added based on user demand.
While you can install paperer and scaffold a manuscript without any
prerequisites, you will need a LaTeX distribution installed on your system to
compile the manuscript. Please check
tug.org/texlive for more information on how to
install LaTeX on your system.
To install paperer, simply run the following command:
curl https://raw.githubusercontent.com/mihaiconstantin/paperer/main/install.sh | sudo bashThe command above will perform the following steps:
- Clone the
mihaiconstantin/papererrepository to/usr/local/paperer. - Adjust permissions and create
papererexecutable from/usr/local/paperer/paperer.sh - Create symbolic link in
/usr/local/binforpaperer -> /usr/local/paperer.
To uninstall paperer simply run:
paperer --uninstallThe --uninstall flag will reverse the installation steps described above.
To update paperer you can run:
paperer --updateThis --update flag will pull the latest changes from GitHub into your local
copy of the repository available at /usr/local/paperer.
You can start by print the help message using the --help or -h options:
paperer --helpThe help message will look as follows:
Usage: paperer [option]
Options:
-d, --directory=DIR The directory DIR where to prepare the paper without the trailing slash.
-t, --template=TPL The template TPL to use for scaffolding. The default is 'apa'.
Currently included templates with 'paperer' are: 'apa'.
However, custom templates can be used by specifying the source folder.
-s, --source=DIR Source directory where to look for the template TPL for scaffolding.
The default is the 'templates' folder of the 'paperer' installation.
This option is useful if you want to use your own templates.
--update Update 'paperer' from GitHub.
--uninstall Uninstall 'paperer'.
--help Display this help message.
Description:
- Repository: https://github.com/mihaiconstantin/paperer
- Mihai Constantin ([email protected])Then, to prepare a new manuscript at path /path/to/manuscript, simply run:
paperer --directory=/path/to/manuscriptThis option will create a new directory at /path/to/manuscript and scaffold
the LaTeX files associated with the default apa template. The scaffolding
process for the apa template will result in the following structure:
manuscript
├── README.md
├── archive
├── build
├── graphics
├── library.bib
├── manuscript.code-workspace
├── manuscript.tex
└── sections
├── _footnotes.tex
├── _outline.tex
├── _sections.tex
├── abstract.tex
├── introduction.tex
└── section-one.texCheck out the document apa-sample.pdf in
samples/ directory for an example of the resulting manuscript. Also, check out
the --template and --source flags to specify your own local templates.
See the CHANGELOG file.
Any contributions, suggestions, or bug reports are welcome and greatly appreciated. Please open an issue or submit a pull request.
One way to contribute is to provide a new template for a different style of manuscript. To do so, please open a pull request as follows:
- Create a new directory in the
templates/. - Add a sample of the resulting document in the
samples/directory, following the naming convention<template-name>-sample.pdf. - Adjust the the function
display_helpinpaperer.shto include the new template in the help message.
Another way to contribute is by helping with translating the bash scripts
install.sh and paperer.sh to other PowerShell or Batch scripts for
Windows.
paperer is licensed under the MIT license.