t

tlacuache-thesis-fc-unam

@preview

Template para escribir una tesis para la facultad de ciencias.

v0.1.2
MIT
Template

Package Information

Last Updated
Categories
thesis

Preview

Template preview

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/tlacuache-thesis-fc-unam:0.1.2

2. Initialize from template

Create a new project from this template:

typst init @preview/tlacuache-thesis-fc-unam:0.1.2

Version History

0.1.2
9cec4c9908f7...
0.1.1
6b7eca4e0706...

tlacuache-thesis-fc-unam template

Este es un template para tesis de la facultad de ciencias,
en la Universidad Nacional Autónoma de México (UNAM).

This is a thesis template for the Science Faculty at Universidad Nacional Autónoma de México (UNAM) based on my thesis.

Uso/Usage

En la aplicación web de Typst da click en "Start from template" y busca tlacuache-thesis-fc-unam.

In the Typst web app simply click "Start from template" on the dashboard and search for tlacuache-thesis-fc-unam.

Si estas usando la versión de teminal usa el comando:
From the CLI you can initialize the project with the command:

typst init @preview/tlacuache-thesis-fc-unam:0.1.2

Configuración/Configuration

Para configurar tu tesis puedes hacerlo con estas lineas al
inicio de tu archivo principal.

To set the thesis template, you can use the following lines
in your main file.

#import "@preview/tlacuache-thesis-fc-unam:0.1.2": thesis

#show: thesis.with(
  titulo: [Titulo],
  grado: [Licenciatura],
  autor: [Autor],
  asesor: [Asesor],
  lugar: [Ciudad de México, México],
  agno: [#datetime.today().year()],
  bibliography: bibliography("references.bib"),
)

// Tu tesis va aquí

Tambien puedes utilizar estas lineas para crear capítulos con bibliografía,
si deseas crear un pdf solomente para el capítulo.

You could also create a pdf for just a chapter with bibliography, by using the following lines.

#import "@preview/tlacuache-thesis-fc-unam:0.1.2": chapter

// completamente opcional cargar la bibliografía, compilar el capítulo
#show: chapter.with(bibliography: bibliography("references.bib"))

// Tu capítulo va aquí

Si quieres crear pdf aun mas cortos, puedes utilizar estas lineas para crear un pdf solo para el sección de tu capítulo.

You could even create a pdf for just a section of a chapter.

#import "@preview/tlacuache-thesis-fc-unam:0.1.2": section

// completamente opcional cargar la bibliografía, compilar el sección
#show: section.with(bibliography: bibliography("references.bib"))

// Tu sección va aquí