Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tests/docs/manuscript/qmd-single/_extensions/quarto-journals/agu/agu.lua
3595 views
1
2
3
if quarto.doc.is_format("pdf") then
4
return {
5
{
6
Div = function(div)
7
if div.identifier == 'refs' then
8
div.content:insert(pandoc.RawBlock('latex', '\\vspace{1em}'))
9
return div
10
end
11
end
12
}
13
}
14
end
15