Fixed Tab Order
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
TODO
|
||||
23
BUILD.md
Normal file
23
BUILD.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# BUILD
|
||||
|
||||
#### Software Requirements:
|
||||
###### PDF
|
||||
* cairosvg (http://cairosvg.org/)
|
||||
* pdftk (https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/)
|
||||
* Adobe Acrobat Pro DC *Only for form fillable* (https://acrobat.adobe.com/us/en/acrobat/acrobat-pro.html)
|
||||
|
||||
#### Build Instructions:
|
||||
Clone the repository to your local system.
|
||||
```sh
|
||||
git clone https://www.skycube.me.uk/git/zabouth/5e-A4-Half-Fold-Booklet.git
|
||||
```
|
||||
Change to the src directory.
|
||||
```sh
|
||||
cd ./5e-A4-Half-Fold-Booklet/src/
|
||||
```
|
||||
Run the build.sh script to genarate Final.pdf
|
||||
```sh
|
||||
./build.sh
|
||||
```
|
||||
#### Form Fillable Instructions:
|
||||
To add form fillable fields to the PDF use Adobe Acrobat Pro DC to replace the pages in the file "Character Sheet - A4 Center Fold Fillable Template.pdf" with the Pages from Final.pdf generated by the build script.
|
||||
Binary file not shown.
@@ -11,6 +11,10 @@ For best resultes use the following setting when printing.
|
||||
* Duplex: Flip on short edge
|
||||
* Scaling: Actual size
|
||||
|
||||
### Screenshots
|
||||

|
||||

|
||||
|
||||
### Attributions
|
||||
|
||||
Fonts:
|
||||
|
||||
BIN
screenshots/Character Sheet - A4 Center Fold Page 1.png
Normal file
BIN
screenshots/Character Sheet - A4 Center Fold Page 1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 139 KiB |
BIN
screenshots/Character Sheet - A4 Center Fold Page 2.png
Normal file
BIN
screenshots/Character Sheet - A4 Center Fold Page 2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
BIN
src/Character Sheet - A4 Center Fold Fillable Template.pdf
Normal file
BIN
src/Character Sheet - A4 Center Fold Fillable Template.pdf
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 275 KiB After Width: | Height: | Size: 183 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 402 KiB After Width: | Height: | Size: 278 KiB |
7
src/screenshot.sh
Executable file
7
src/screenshot.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
for file in *.svg
|
||||
do
|
||||
cairosvg "$file" -f png -o ../screenshots/"${file%.svg}.png"
|
||||
convert ../screenshots/"${file%.svg}.png" -resize 75% -background white -alpha remove ../screenshots/"${file%.svg}.png"
|
||||
done
|
||||
Reference in New Issue
Block a user