3 Commits

Author SHA1 Message Date
e5870f5ad1 docs: explain formats 2026-03-10 20:08:09 +01:00
767bfce78f feat: improve template and rename it 2026-03-10 20:07:55 +01:00
d358562f2f feat: add typst template 2026-03-10 19:47:18 +01:00
2 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
# Bokeron template
Este repositorio contiene las plantillas en distintos formatos para elaborar diapositivas destinadas a talleres y eventos de Open Bokeron.
## Formatos disponibles
### LaTeX
**Cómo usar**
1. Copiar a la raiz de tu proyecto:
- `main.tex`
- `beamerthemeBokeronTemp.sty`
- `images/`
- `background/`
2. Opcionalmente, copiar `sections/` y crear ahí las secciones de tus diapositivas.
3. Editar los `\input` en `main.tex` para que incluyan tus propias secciones. Alternativamente, eliminar los `\input` y editar directamente el contenido del `main.tex`.
### Typst
**Cómo usar**
1. Copiar a la raiz de tu proyecto:
- `openbokeron.typ`
2. Crear un fichero principal (por ejemplo `main.typ`) y añadir la siguiente cabecera:
```typst
#import "openbokeron.typ": OpenBokeron
#show: OpenBokeron.with(
title: "Mi título",
subtitle: "Mi subtítulo (opcional)",
authors: (
(name: "Autor1", email: "example@example.com (opcional)"),
),
//cover-image: image("mi_portada.png") // opcional
//cover-theme: "dark" // si mi portada requiere texto claro
)
```
3. Editar con normalidad el resto del documento.

187
openbokeron.typ Normal file

File diff suppressed because one or more lines are too long