1 2 3if quarto.doc.is_format("pdf") then 4return { 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} 14end 15