Printing Guide
Instructions for creating print-friendly versions of this Bible study guide.
Why Print?โ
While digital study is convenient, printed materials offer advantages:
- No distractions - No notifications or temptations to browse
- Better retention - Research shows better comprehension with physical materials
- Annotation - Write notes directly on pages
- Portability - No battery needed
- Group distribution - Easy to share with study groups
- Offline access - Study anywhere, anytime
What to Printโ
Option 1: Individual Books (Recommended for Personal Study)โ
Print only the books you're currently studying:
- More portable
- Less overwhelming
- Can update sections without reprinting everything
- Lower cost
Suggested combinations:
- Print one book at a time
- Print by section (Pentateuch, Gospels, Paul's letters, etc.)
- Print books for a reading plan
Option 2: Quick Reference Tables Onlyโ
The most compact option:
quick-reference/old-testament-overview.md(2-3 pages)quick-reference/new-testament-overview.md(1-2 pages)timeline.md(8-10 pages)
Total: 11-15 pages - Perfect for a booklet!
Option 3: Complete Study Guideโ
Print the entire guide:
- All 66 books
- Quick reference tables
- Indexes and timelines
- Total: 300-400+ pages
Best for:
- Teachers
- Small group leaders
- Those wanting a complete reference
Option 4: Custom Selectionโ
Mix and match based on your needs:
- All Old Testament OR all New Testament
- Specific book categories (Historical books, Prophets, Gospels, etc.)
- Reference materials only (indexes, timeline, character guide)
How to Generate PDFs from Markdownโ
Method 1: Using Pandoc (Recommended)โ
Install Pandoc:
- Download from: https://pandoc.org/installing.html
- Available for Windows, Mac, Linux
Convert Markdown to PDF:
# Single file
pandoc old-testament/01-genesis.md -o genesis.pdf
# Multiple files into one PDF
pandoc old-testament/*.md -o old-testament.pdf
# With custom styling
pandoc genesis.md -o genesis.pdf --pdf-engine=xelatex -V geometry:margin=1in
Tips:
- Use
-V geometry:margin=1infor 1-inch margins - Use
-V fontsize=11ptor-V fontsize=12ptfor larger text - Use
--tocto add table of contents
Method 2: Using VS Code + Extensionโ
Steps:
- Install Visual Studio Code (free)
- Install extension: Markdown PDF by yzane
- Open any .md file
- Right-click โ "Markdown PDF: Export (pdf)"
Pros: Simple, one-click solution Cons: Less customization than Pandoc
Method 3: Using Markdown to PDF Online Convertersโ
Free websites:
Steps:
- Copy markdown content
- Paste into converter
- Download PDF
Pros: No installation required Cons: One file at a time, less control
Method 4: Print from Browserโ
Steps:
- View markdown file on GitHub or in browser
- Use browser's print function (Ctrl/Cmd + P)
- Choose "Save as PDF"
Pros: Works anywhere, no tools needed Cons: Formatting may not be optimal
Method 5: Using Obsidian or Typoraโ
Obsidian:
- Free markdown editor
- Install "Pandoc Plugin"
- Export to PDF
Typora:
- Markdown editor ($14.99 one-time purchase)
- Built-in PDF export
- Excellent formatting control
Recommended Print Settingsโ
For Individual Book Guides:โ
- Paper: Letter size (8.5" x 11") or A4
- Orientation: Portrait
- Margins: 0.75" to 1" on all sides
- Font size: 11pt or 12pt
- Line spacing: 1.15 or 1.5
- Color: Black & white (to save ink)
- Duplex: Print both sides to save paper
For Quick Reference Tables:โ
- Paper: Letter size
- Orientation: Landscape (for tables)
- Margins: 0.5" on all sides
- Font size: 10pt or 11pt
- Color: Black & white
- Duplex: Single-sided for reference sheets
For Complete Guide:โ
- Paper: Letter or A4
- Binding: 3-ring binder or comb binding
- Sections: Use dividers for Old Testament, New Testament, Reference
- Cover page: Create a title page
- Index: Print and include at beginning
Cost-Saving Tipsโ
- Print selectively - Only print what you need right now
- Use both sides (duplex printing) - Cuts paper use in half
- Black & white only - Color ink is expensive
- Draft mode - Use printer's economy/draft mode
- Smaller margins - 0.5" margins instead of 1" saves pages
- Multiple pages per sheet - Print 2 pages on 1 sheet (requires good eyesight)
- Share printing costs - Split cost with study group
- Use library or office printer - May be cheaper than home printing
Estimated costs (at $0.05/page for black & white):
- Single book: $0.50 - $1.50
- Quick reference: $0.60 - $0.75
- Complete guide: $15 - $20
Binding Optionsโ
For Short Documents (1-20 pages):โ
- Staple in corner - Free, simple
- Binder clip - Removable, reusable
- Folder with brads - Professional look
For Medium Documents (20-100 pages):โ
- 3-ring binder - Add/remove pages easily
- Spring clips - Sturdy, reusable
- Folder with pocket - Keep loose pages organized
For Large Documents (100+ pages):โ
- Large 3-ring binder with dividers
- Comb binding - Office supply stores ($3-5)
- Spiral binding - Professional ($5-10)
- Thermal binding - Very professional ($10-15)
Pro tip: Use colored dividers to separate:
- Old Testament
- New Testament
- Reference materials (indexes, timeline)
Creating a Custom Printed Study Bibleโ
Build your own annotated Bible study companion:
- Print the books you want
- Leave wide margins (1.5" or more on one side)
- Punch holes on the side with large margin
- Put in 3-ring binder
- Add your Bible (if it has a binder edition)
- Alternate pages: Bible text, study guide, Bible text, study guide
Result: A personalized study Bible with notes integrated!
Formatting Tips for Better Printingโ
Before Converting to PDF:โ
In the markdown files, you may want to:
- Remove excessive navigation links (they don't work in print)
- Add page breaks where needed:
<div style="page-break-after: always;"></div> - Ensure tables fit on page (may need to abbreviate)
Using CSS for Better Print Formatting:โ
Create a file print-styles.css:
@media print {
body {
font-size: 12pt;
line-height: 1.5;
margin: 1in;
}
h1 {
page-break-before: always;
page-break-after: avoid;
}
h2, h3 {
page-break-after: avoid;
}
table {
page-break-inside: avoid;
}
a {
color: black;
text-decoration: none;
}
}
Then use with Pandoc:
pandoc file.md -o file.pdf --css=print-styles.css
Printing from GitHubโ
If this guide is on GitHub:
- Navigate to the file on GitHub
- Click "Raw" button (top right)
- Copy the URL
- Use Pandoc:
pandoc [URL] -o output.pdf
Or use GitHub's built-in print:
- View file on GitHub
- Press Ctrl/Cmd + P
- Save as PDF
Pre-Made PDF Collections (If Available)โ
Check the repository for pre-generated PDFs in a pdfs/ folder:
- โ All books (one PDF per book)
- โ Quick reference sheets
- โ Complete guide PDF
- โ Old Testament only
- โ New Testament only
If PDFs aren't available, request them or use the methods above to create your own!
Recommended Page Layoutโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โ [Book Title] โ
โ โ
โ [One-Sentence Summary] โ
โ โ
โ [Book Overview] โ
โ Author:... โ
โ Date:... โ
โ โ
โ [Book Structure] โ
โ Part 1: ... โ
โ Part 2: ... โ
โ โ
โ [Key Verses] โ
โ Verse 1... โ
โ โ
โ [Key Themes] โ
โ 1. Theme... โ
โ 2. Theme... โ
โ โ
โ [Central Message] โ
โ ... โ
โ โ
โ [Practical Application] โ
โ - For Daily Living โ
โ - For Spiritual Growth โ
โ โ
โ [Recommended Resources] โ
โ ... โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Each book fits approximately 3-5 pages when printed with standard formatting.
Sample Pandoc Commandsโ
Basic conversion:
pandoc old-testament/01-genesis.md -o genesis.pdf
With nice formatting:
pandoc old-testament/01-genesis.md -o genesis.pdf \
--pdf-engine=xelatex \
-V geometry:margin=1in \
-V fontsize=12pt \
-V linestretch=1.3
Combine multiple files:
pandoc old-testament/01-genesis.md old-testament/02-exodus.md -o pentateuch.pdf
All Old Testament:
pandoc old-testament/*.md -o old-testament-complete.pdf \
--toc \
--toc-depth=2 \
-V geometry:margin=0.75in
All New Testament:
pandoc new-testament/*.md -o new-testament-complete.pdf \
--toc \
--toc-depth=2
Complete guide with table of contents:
pandoc README.md old-testament/*.md new-testament/*.md -o complete-guide.pdf \
--toc \
--toc-depth=3 \
-V geometry:margin=0.75in \
-V fontsize=11pt
Troubleshootingโ
Problem: Tables don't fit on page Solution: Use landscape orientation or abbreviate column content
Problem: Links don't work in PDF Solution: That's normal - links don't function in print
Problem: Pandoc not found Solution: Make sure Pandoc is installed and in your PATH
Problem: Fonts look wrong
Solution: Try different PDF engine: --pdf-engine=pdflatex or xelatex
Problem: Page breaks in weird places Solution: Add manual page breaks or adjust margins
For Study Groupsโ
Creating handouts for your group:
- Print Quick Reference tables - One per person as overview
- Print current book being studied - Everyone has the same material
- Leave margin space - For note-taking during discussion
- Add discussion questions (see each book's guide)
- Include key verses - Highlighted for quick reference
Group printing options:
- One person prints, group reimburses
- Each person prints their own
- Church/group provides printing
- Use online printing service (Vistaprint, FedEx Office)
Digital Alternatives to Printingโ
If you prefer digital but want print-like benefits:
- Tablet/iPad - Read PDFs, annotate with stylus
- E-reader (Kindle, Kobo) - Some support PDFs
- Printed summaries only - Keep full guide digital
- Both - Print summaries, keep detailed guide on device