Mannequins Technical Maps
Technical Maps for Whimsical Raps' Mannequins Eurorack Modules
Feel free to grab printable PDFs for your desired modules, or clone the repository and make your own customizations to the manuals using Markdown or LaTeX! Hyperlinked, mobile friendly versions of the manuals are also linked below!
MANGROVE: PDF & Hyperlinked Web Document
JUST FRIENDS: PDF & Hyperlinked Web Document
COLD MAC: PDF & Hyperlinked Web Document
THREE SISTERS: PDF & Hyperlinked Web Document
Customizing Your Manual
Requirements
- Pandoc will render the manual markdown files to PDFs.
- A LaTeX installation (suggestions: MikTex for Windows, BasicTex for MacOS, TeXLive for Linux) is necessary for Pandoc to render PDFs.
- Python and Panflute are necessary to accurately create pagebreaks in the PDF.
Installation
Windows & Mac
- Download the latest Pandoc installer here.
- Run the Pandoc installer.
- Donwload the latest MikTeX installer here.
- Run the MikTex installer.
- Download the latest Python installer here.
- Run the Python installer.
- Open a command line prompt and run
pip install panflute
.
Linux
- Run
sudo apt-get install pandoc
. - Run
sudo apt-get install texlive
. - Run
sudo apt-get install python3.6
. - Run
pip install panflute
.
Steps
- Clone this repository using
git clone
or download this repository as a .zip and unpack it. - Navigate to the directory of the module you wish to edit.
- Make your own personal changes to
<module-name>.md
to include your customizations! Sticking with Markdown formatting is easiest, but Pandoc supports many other formatting methods! - Run
pandoc <module-name>.md --metadata-file=metadata.md --filter myfilter.py -o <module-name>.pdf
to generate of your new manual!
NB: Font, paper size, and line spacing settings can be edited in metadata.md
.
NB: Pagebreaks will automatically be created on any level 1 or 2 heading (#
or ##
). You can also use \newpage
or <div></div>
to insert pagebreaks at any other location.