Agregué \setupbackend[export=yes]
a mi archivo para probar las capacidades de exportación html. Todo funciona excelente excepto la bibliografía que está dividida (en -div
versión) o viene en un párrafo (en -tag
o -raw
versiones). Obviamente, solo hay que agregar una línea para que cada entrada de bibliografía se considere como un párrafo.
\setuplanguage[en]
\setupbackend[export=yes]
\mainlanguage[english]
\startbuffer[bib]
@Book{Declercq:2000,
author = {Declercq, Georges},
title = {Anno Domini: The origins of the Christian era},
address = {Turnhout},
publisher = {Brill},
year = {2000},
shorttitle = {Anno Domini},
shorthand = {Declercq},
language = {english},
hyphenation = {english},
pagetotal = {206},
}
@Book{Rupke:2011,
author = {Jörg Rupke},
title = {The Roman Calendar from Numa to Constantine: Time, History, and the Fasti},
address = {Chichester, West Sussex, U.K.},
publisher = {Wiley-Blackwell},
year = {2011},
shorttitle = {The Roman Calendar},
shorthand = {The Roman calendar},
language = {english},
hyphenation = {english},
}
\stopbuffer
\usebtxdataset[default][bib.buffer]
\loadbtxdefinitionfile[apa]
\usebtxdefinitions[apa]
\setupbtx[dataset=default]
\definebtxrendering[default][apa][specification=chicago,sorttype=authoryear,numbering=no]
\setupindenting[big,yes]
\usetypescript[palatino]
\setupbodyfont[palatino,12pt]
\starttext
\startbodymatter
Test.\cite[Rupke:2011] Another test.\cite[Declercq:2000]
\stopbodymatter
\startbackmatter
\startchapter[title=Bibliography]
\placelistofpublications[criterium=all]
\stopchapter
\stopbackmatter
\stoptext
Respuesta1
Si ejecuta context <file>.tex
con la opción \setupbackend[export=yes]
, obtendrá la siguiente estructura:
<file>-export
├── <file>-div.html
├── <file>-pub.lua
├── <file>-raw.xml
├── <file>-tag.xhtml
├── images
└── styles
├── <file>-defaults.css
├── <file>-images.css
├── <file>-styles.css
└── <file>-templates.css
Puede agregar espacio entre las entradas de la bibliografía configurándolas margin
con el siguiente fragmento:
listitem[detail=btx-apa],
div.listitem.btx-apa {
display: block ;
margin : 2ex ;
}
Hay dos formas de hacerlo:
Después de ejecutarlo,
context <file>.tex
puede agregar el fragmento al<file>-style.css
archivo en formatostyles
.Puede crear un nuevo archivo css,
<cssfile>.css
que contenga su propia configuración (como el fragmento anterior), especificarlo\setupexport[cssfile=<cssfile>.css]
en su documento y ejecutarlocontext <file>.tex
después.
Ambas formas darán como resultado párrafos separados:
La segunda forma tiene la ventaja de que puede recopilar todos sus estilos CSS en un solo lugar y (re)utilizarlos para diferentes documentos.