Interactive Template Browser
Browse and search LaTeX templates for TeXlyre, the local-first collaborative LaTeX editor.
0
Total Templates
0
Categories
-
Last Updated
Loading templates...
Features
- Community-driven LaTeX template collection
- Integration with TeXlyre collaborative editor
- Searchable by tags, categories, and content
- Easy import into TeXlyre projects
- Preview images for quick template identification
- Standardized metadata and validation
API Reference
Access templates programmatically using our JSON API:
GET https://texlyre.github.io/texlyre-templates/api/templates.json
The API returns all available templates organized by category, including metadata, download URLs, and preview images.
Usage
import { templatesApi } from 'texlyre-templates';
// Get all templates
const api = await templatesApi.getTemplates();
// Search templates
const results = await templatesApi.searchTemplates('ieee');
// Get templates by category
const papers = await templatesApi.getTemplatesByCategory('academic');
// Download a template
const blob = await templatesApi.downloadTemplate(template);