--- marp: true theme: uncover paginate: true --- # TSYS Documentation & Diagrams ## A Marp Presentation Sample --- ## What's in this Container? - **Pandoc** - Universal document converter - **mdBook** - Book generation from Markdown - **Typst** - Modern typesetting system - **Marp** - Markdown presentation creator - **Quarto** - Scientific publishing system - **And more!** --- ## Key Features - Runs as non-root user - Uses `mise` for runtime management - Version-pinned packages - Multi-platform support - Security-first design --- ## Document Conversion Convert documents between formats easily: ```bash pandoc input.md -o output.pdf ``` Or with custom styling: ```bash pandoc input.md --reference-doc=template.docx -o output.docx ``` --- ## Multi-format Publishing Create documents in multiple formats simultaneously: - PDF for print - HTML for web - DOCX for word processing - EPUB for e-readers --- ## Code Example Highlighting code in presentations: ```javascript function helloWorld() { console.log("Hello, world!"); return true; } ``` --- ## Math Support Equations in presentations: $$ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} $$ --- ## Diagrams Create diagrams with Kroki: ```mermaid graph TD A[Document] --> B{Format} B --> C[PDF] B --> D[HTML] B --> E[DOCX] ``` --- ## Thank You! For more information, check out the documentation: - README.md - USAGE.md - Troubleshooting Guide Questions?