Compare commits

3 Commits

Author SHA1 Message Date
7becbf6269 Add first published date. 2025-10-30 06:31:39 -07:00
8dd1e6d598 Do not reference the booklets by name. 2025-10-30 06:31:25 -07:00
1ff0af75d2 Name the variables more precisely. 2025-10-04 14:11:32 -07:00
3 changed files with 7 additions and 7 deletions

View File

@@ -18,4 +18,4 @@ After making changes, run the convert script from the project directory.
convert.sh convert.sh
``` ```
You should now have `VoluntarySovereignty.pdf` and `VoluntarySovereignty-book.pdf` available. You should now have `VoluntarySovereignty.pdf` and its booklets available.

View File

@@ -9,9 +9,9 @@ date
md="ebook.md" md="ebook.md"
ebook="VoluntarySovereignty.pdf" ebook="VoluntarySovereignty.pdf"
booklet1="VoluntarySovereignty-book.pdf" book="VoluntarySovereignty-book.pdf"
booklet2="VoluntarySovereignty-booklet-default.pdf" booklet="VoluntarySovereignty-booklet-default.pdf"
booklet3="VoluntarySovereignty-booklet-rotated.pdf" rotated="VoluntarySovereignty-booklet-rotated.pdf"
if [[ -e $ebook ]]; then if [[ -e $ebook ]]; then
echo -n "Old: " echo -n "Old: "
@@ -29,10 +29,10 @@ status=$?
# Use LaTeX booklet package to make a print, fold, and staple version! # Use LaTeX booklet package to make a print, fold, and staple version!
pdfbook2 -n $ebook pdfbook2 -n $ebook
mv $booklet1 $booklet2 mv -v $book $booklet
pdfbook2 -ns $ebook pdfbook2 -ns $ebook
mv $booklet1 $booklet3 mv -v $book $rotated
echo "Completed with status '$status'." echo "Completed with status '$status'."

View File

@@ -7,7 +7,7 @@ subject: Voluntary Sovereignty
title: "Voluntary Sovereignty" title: "Voluntary Sovereignty"
subtitle: "*Existing in a `statist` society with the least amount of friction.*" subtitle: "*Existing in a `statist` society with the least amount of friction.*"
author: 'by `Chad Michael "Hyperling" Greenwood`' author: 'by `Chad Michael "Hyperling" Greenwood`'
date: "Last Revised {REVISION_DATE}" date: "First Published 2025-09-28. Last Revised {REVISION_DATE}"
# Font sizes can only be 10pt-12pt (https://pandoc.org/MANUAL.html#fonts) # Font sizes can only be 10pt-12pt (https://pandoc.org/MANUAL.html#fonts)
fontsize: "12pt" fontsize: "12pt"