Skip to content

Commit

Permalink
Fix #2. Fix adjacent citation style
Browse files Browse the repository at this point in the history
  • Loading branch information
PuntitOwO committed May 15, 2024
1 parent 20ed926 commit e5c00a2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ Esta opción no se recomienda del todo, ya que no siempre estará actualizada co

## Changelog

### v1.1.1

* Se ajusta el estilo de citas a `"council-of-science-editors"`, esto deja las citas contiguas como `[1, 2]` o `[1-3]`
* Se arregla error en la tabla de contenido cuando se añade bibliografía. [(Issue #2)](https://github.com/PuntitOwO/template-informe-practica-fcfm/issues/2)

### v1.1.0

* Se actualizan los márgenes de página y la enumeración de páginas antes del inicio del contenido.
Expand Down
9 changes: 6 additions & 3 deletions conf.typ
Original file line number Diff line number Diff line change
Expand Up @@ -130,16 +130,19 @@
first-line-indent: 15pt,
) // Formato de párrafos
show par: set block(spacing: 2em) // Espacio entre párrafos
set cite(style: "council-of-science-editors") // esto deja las citas contiguas como [1, 2] o [1-3]
pagebreak(weak: true) // Salto de página
counter(page).update(1) // Reestablecer el contador de páginas
let numbering-indent = 2em
let page-num-indent = 1.2em
show bibliography: set heading(numbering: "1.")
show selector(outline.entry): it => {
let num = it.body.children.first()
let title = link(it.element.location())[#for i in it.body.children.slice(1) {i}]
let num = if it.body.has("children") [#it.body.children.first()] else []
box(width: numbering-indent, num)
title
if it.body.has("children") [
#link(it.element.location())[#for i in it.body.children.slice(1) {i}]
] else [#link(it.element.location())[ #it.element.body]]
box(width: 1fr, repeat[.])
box(width: page-num-indent, align(right, it.page))
}
Expand Down
Binary file modified example.pdf
Binary file not shown.
6 changes: 5 additions & 1 deletion example.typ
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,8 @@ En esta sección se deberá retomar y confirmar de manera sintética los aspecto
En esta sección se puede incluir material de adicional de apoyo al informe, por
ejemplo, capturas de pantalla, código fuente, o la descripción de casos de uso.
Este acápite es optativo.
]
]

@CorlessJK97 @NewmanT42

#bibliography("bibliografia.yml", title: "Referencias")

0 comments on commit e5c00a2

Please sign in to comment.