# Print to PDF Instructions

## Files Ready for PDF Conversion

### Recommended File: `FINAL_REPORT_PDF_READY.md`

This file contains the complete investigation report formatted for PDF conversion.

---

## Method 1: Using VS Code (Recommended)

1. Open `FINAL_REPORT_PDF_READY.md` in VS Code
2. Install extension: **Markdown PDF** (yzane.markdown-pdf)
3. Right-click → **Markdown PDF: Export (pdf)**

---

## Method 2: Using Online Converter

1. Open `FINAL_REPORT_PDF_READY.md` in a text editor
2. Copy content
3. Go to: https://www.markdowntopdf.com/
4. Paste and convert
5. Download PDF

---

## Method 3: Using Chrome/Edge Print to PDF

1. Open `report.html` in Chrome or Edge browser
2. Press **Ctrl+P** (or Cmd+P on Mac)
3. Change Destination to **Save as PDF**
4. Select **More settings** → Enable **Background graphics**
5. Click Save

---

## Method 4: Using pandoc (if installed)

```bash
pandoc FINAL_REPORT_PDF_READY.md -o report.pdf \
  --from markdown \
  --pdf-engine=xelatex \
  -V geometry:margin=2cm \
  -V 'geometry:a4paper' \
  -V 'fontsize=11pt' \
  -V documentclass=article
```

---

## Method 5: Using LibreOffice (if available)

```bash
libreoffice --headless --convert-to pdf FINAL_REPORT_PDF_READY.md
```

---

## Report Contents Summary

The PDF-ready report includes:

- **Executive Summary** with verification status
- **Detailed Timeline** (Beirut Time + UTC)
- **Propagation Analysis** (private vs public phases)
- **15 Sources Documented** with direct links
- **Arabic Sources with English Translations**
- **IDF Response Evolution** (April 19 → April 20)
- **Israeli Government Response** (FM Sa'ar statement)
- **Christian Community Response**
- **Location Analysis** (Debel village details)
- **Pending Items** with status tracking

---

## Alternative: Print Case.md

If you want ALL documentation including evidence details:

1. Open `case.md` in VS Code
2. Install Markdown PDF extension
3. Export to PDF

Note: This is much longer (~20 pages vs ~12 pages for the final report).

---

## File Summary

| File | Pages (est.) | Purpose |
|:---|:---|:---|
| `FINAL_REPORT_PDF_READY.md` | ~12 | **Recommended** - Complete summary report |
| `report.html` | ~12 | Web version (print from browser) |
| `case.md` | ~20 | Full case documentation |
| `PDF_REPORT_DRAFT.md` | ~15 | Draft version (older format) |

---

**Quick Print:** Open `FINAL_REPORT_PDF_READY.md` → Copy → Paste into https://www.markdowntopdf.com/
