El contenido de tu Trabajo Fin de Estudios empieza aquí …
Puede hacer referencias a publicaciones (almacenadas en el fichero BibTeX indicado en “bibliography:”) para que se incluyan en las “Referencias” al final del documento: consultar Luque-Calvo (2017) …
2 Análisis de …
Aquí empieza el capítulo 2
3 Uso de R para realizar el Análisis
Aquí empieza el capítulo 3
{{< appendix >}}
4 Código R utilizado
Aquí empieza el primer apéndice
4.1 Funciones básicos
Se escribe …
# Escribir código R aquí ...summary(mtcars)
mpg cyl disp hp
Min. :10.40 Min. :4.000 Min. : 71.1 Min. : 52.0
1st Qu.:15.43 1st Qu.:4.000 1st Qu.:120.8 1st Qu.: 96.5
Median :19.20 Median :6.000 Median :196.3 Median :123.0
Mean :20.09 Mean :6.188 Mean :230.7 Mean :146.7
3rd Qu.:22.80 3rd Qu.:8.000 3rd Qu.:326.0 3rd Qu.:180.0
Max. :33.90 Max. :8.000 Max. :472.0 Max. :335.0
drat wt qsec vs
Min. :2.760 Min. :1.513 Min. :14.50 Min. :0.0000
1st Qu.:3.080 1st Qu.:2.581 1st Qu.:16.89 1st Qu.:0.0000
Median :3.695 Median :3.325 Median :17.71 Median :0.0000
Mean :3.597 Mean :3.217 Mean :17.85 Mean :0.4375
3rd Qu.:3.920 3rd Qu.:3.610 3rd Qu.:18.90 3rd Qu.:1.0000
Max. :4.930 Max. :5.424 Max. :22.90 Max. :1.0000
am gear carb
Min. :0.0000 Min. :3.000 Min. :1.000
1st Qu.:0.0000 1st Qu.:3.000 1st Qu.:2.000
Median :0.0000 Median :4.000 Median :2.000
Mean :0.4062 Mean :3.688 Mean :2.812
3rd Qu.:1.0000 3rd Qu.:4.000 3rd Qu.:4.000
Max. :1.0000 Max. :5.000 Max. :8.000
Referencias
Luque-Calvo, Pedro L. 2017. Escribir un Trabajo Fin de Estudios con R Markdown. Disponible en http://destio.us.es/calvo.
Ejecutar el código
---title: Tu título aquíauthor: Tu nombre-apellidos aquíresumen: Tu resumen aquípalabras-clave: [Palabra01, Palabra02] abstract: Tu resumen en inglés aquíkeywords: [Word01, Word02]agradecimientos: Tus agradecimientos aquílang: esdate: todaydate-format: fullbibliography: referencias.bibformat: memoriatfetypst-typst: toc: true #bibliographystyle: apa #bibliographystyle: chicago-author-date #keep-typ: true tofiguras: true totablas: true papersize: a4 portada: true logo: "logo.png" facultad: "Facultad de Matemáticas" universidad: "Universidad de Sevilla" tutor-TFG: "Tutor: Nombre de tu tutor aquí" fecha-TFG: "Sevilla, Junio de 2026" nombre-capitulo: "CAPÍTULO" apendice-portada: "Apéndice" apendice-nombre: "Apéndice" referencias-nombre: "Referencias" cabecera-capitulo: "estilo01" # margin: {x: 2cm, y: 2cm} toccapitulos: false bibliografia-completa: false html: toc: true toc-title: "Tabla de Contenidos" number-sections: true code-tools: source: true embed-resources: trueexecute: warning: false message: false---```{=typst}#show raw.where(lang: "python", block: true): set block( //fill: rgb("#f3f051ff"), //luma(240), fill: rgb("#ffff473d"), //rgb("#678df56f"), //rgb("#FFFF47"), rgb("#ffff473d") //rgb("#678CF5"), rgb("#e8f0ff"), stroke: 0.4pt + black, width: 100%, inset: 8pt, radius: 4pt)/*rgb("#f5f2f0")stroke: (top: 1pt + rgb("#d1e3e1")),*/// color de fondo por defecto en los códigos de R en Quarto con typst: rgb("#F2F2F2")#show raw.where(lang: "r", block: true): set block( //fill: luma(240), fill: rgb("#1b50ab1f"), // #1B51AB, // #eef6ff //stroke: 0.4pt + luma(250), //rgb("#f3f051ff"), //black, stroke: 0.4pt + rgb("#1B51AB"), // luma(250), //rgb("#f3f051ff"), //black, width: 100%, inset: 8pt, radius: 4pt)#show raw.where(lang: "markdown", block: true): set block( fill: rgb("#d1e3e155"), // luma(240), //fill: rgb("#1b50ab1f"), // #1B51AB, // #eef6ff //stroke: 0.4pt + luma(250), //rgb("#f3f051ff"), //black, //stroke: 0.4pt + rgb("#1B51AB"), // luma(250), //rgb("#f3f051ff"), //black, width: 100%, inset: 8pt, radius: 4pt)#show raw.where(lang: none, block: true): set block( fill: luma(250), //stroke: 0.4pt + black, stroke: (top: 1pt + rgb("#d1e3e1"), bottom: 1pt + rgb("#d1e3e1")), width: 100%, inset: 8pt, radius: 4pt)```# Estado del arteAquí empieza el capítulo 1## IntroducciónEl contenido de tu Trabajo Fin de Estudios empieza aquí ...Puede hacer referencias a publicaciones (almacenadas en el fichero BibTeX indicado en "`bibliography:`") para que se incluyan en las "Referencias" al final del documento: consultar @Luque2017 ...# Análisis de ...Aquí empieza el capítulo 2# Uso de R para realizar el AnálisisAquí empieza el capítulo 3{{< appendix >}}# Código R utilizadoAquí empieza el primer apéndice## Funciones básicosSe escribe ...```{r}# Escribir código R aquí ...summary(mtcars)```