You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Al intentar cargar la bibliografía mediante #bibliography("bibliografia.bib") o #bibliography("bibliografia.yml") (no importa cuál), el compilador reclama que hay un error en conf.typ en la línea 138 porque it.body no tiene un atributo children
show selector(outline.entry): it => {
let num = it.body.children.first() // <------ esta línea
let title = link(it.element.location())[#for i in it.body.children.slice(1) {i}]
box(width: numbering-indent, num)
title
box(width: 1fr, repeat[.])
box(width: page-num-indent, align(right, it.page))
}
La forma en que yo lo solucioné fue cambiando el fragmento anterior (con conf.typ:137) por esto:
show selector(outline.entry): it => {
let num = if it.body.has("children") [#it.body.children.first()] else []
box(width: numbering-indent, num)
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))
}
Con esto si compila y aparece la bibliografía en el índice sin un número, no se me ocurrió una solución más elegante, pero ahí está
The text was updated successfully, but these errors were encountered:
Al intentar cargar la bibliografía mediante
#bibliography("bibliografia.bib")
o#bibliography("bibliografia.yml")
(no importa cuál), el compilador reclama que hay un error enconf.typ
en la línea 138 porqueit.body
no tiene un atributochildren
La forma en que yo lo solucioné fue cambiando el fragmento anterior (con
conf.typ:137
) por esto:Con esto si compila y aparece la bibliografía en el índice sin un número, no se me ocurrió una solución más elegante, pero ahí está
The text was updated successfully, but these errors were encountered: