A4 templates for Remarkable Paper Pro
Graph_1cm_A4_Blue.pdf | ||
Graph_1cm_A4_Blue.png | ||
Graph_1cm_A4_Blue_Landscape.pdf | ||
Graph_1cm_A4_Blue_Landscape.png | ||
Graph_1mm_A4_Blue.pdf | ||
Graph_1mm_A4_Blue.png | ||
Graph_1mm_A4_Blue_Landscape.pdf | ||
Graph_1mm_A4_Blue_Landscape.png | ||
Graph_5mm_A4_Black.pdf | ||
Graph_5mm_A4_Black.png | ||
Graph_5mm_A4_Black_Landscape.pdf | ||
Graph_5mm_A4_Black_Landscape.png | ||
Graph_5mm_A4_Blue.pdf | ||
Graph_5mm_A4_Blue.png | ||
Graph_5mm_A4_Blue_Landscape.pdf | ||
Graph_5mm_A4_Blue_Landscape.png | ||
Large_A4_Blue.pdf | ||
Large_A4_Blue.png | ||
Large_A4_Blue_Landscape.pdf | ||
Large_A4_Blue_Landscape.png | ||
Narrow_A4_Blue.pdf | ||
Narrow_A4_Blue.png | ||
Narrow_A4_Blue_Landscape.pdf | ||
Narrow_A4_Blue_Landscape.png | ||
README.md | ||
templates_updated.json | ||
To-Do_List_A4.pdf | ||
To-Do_List_A4.png | ||
University_A4_Blue.pdf | ||
University_A4_Blue.png | ||
University_A4_Blue_Landscape.pdf | ||
University_A4_Blue_Landscape.png |
Remarkable Templates Repository
This repository contains custom templates for the Remarkable tablet. Follow the steps below to install them on your device.
Installation Instructions
1. Connect to the Remarkable Tablet
ssh root@10.11.99.1
mkdir templates
2. Clone the Repository on Your Local Machine
git clone https://git.aquila-consortium.org/fleclercq/remarkable_templates.git
cd remarkable_templates
3. Transfer the Templates to the Remarkable Tablet
scp *.png root@10.11.99.1:/home/root/templates/
scp templates_updated.json root@10.11.99.1:/usr/share/remarkable/templates/templates.json
4. Configure the Templates on the Remarkable Tablet
cd /usr/share/remarkable/templates
for i in /home/root/templates/*.png ; do ln -s $i . ; done
systemctl restart xochitl
After restarting xochitl
, the new templates should be available for use on your Remarkable tablet.
Notes on Remarkable Templates
A4 templates for the Remarkable Paper Pro should have dimension 1893 x 2678 pixels (210 x 297 mm at 229 dpi).
Remarkable Paper Pro resolution is 2160 x 1620 (229 dpi).
A4 PDF files can be converted to PNG at the right resolution using:
for i in *.pdf ; do convert -density 229 -quality 100 $i ${i/.pdf/.png} ; done