A4 templates for Remarkable Paper Pro
Find a file
2025-01-24 17:54:13 +01:00
Graph_1cm_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_1cm_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
Graph_1cm_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_1cm_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
Graph_1mm_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_1mm_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
Graph_1mm_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_1mm_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Black.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Black.png initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Black_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Black_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Graph_5mm_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
Large_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
Large_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
Large_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Large_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
Narrow_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
Narrow_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
Narrow_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
Narrow_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00
README.md initial commit 2025-01-24 17:54:13 +01:00
templates_updated.json initial commit 2025-01-24 17:54:13 +01:00
To-Do_List_A4.pdf initial commit 2025-01-24 17:54:13 +01:00
To-Do_List_A4.png initial commit 2025-01-24 17:54:13 +01:00
University_A4_Blue.pdf initial commit 2025-01-24 17:54:13 +01:00
University_A4_Blue.png initial commit 2025-01-24 17:54:13 +01:00
University_A4_Blue_Landscape.pdf initial commit 2025-01-24 17:54:13 +01:00
University_A4_Blue_Landscape.png initial commit 2025-01-24 17:54:13 +01:00

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