diff --git a/_extensions/apaquarto/apafloatlatex.lua b/_extensions/apaquarto/apafloatlatex.lua index 1ce3615..3855b5c 100644 --- a/_extensions/apaquarto/apafloatlatex.lua +++ b/_extensions/apaquarto/apafloatlatex.lua @@ -43,7 +43,6 @@ local processfloat = function(float) local beforenote = "" if manuscriptmode then beforenote = "\\vspace{-20pt}\n" - quarto.log.output(float.attributes) if float.attributes["beforenotespace"] then beforenote = "\\vspace{" .. float.attributes["beforenotespace"] .. "}\n" @@ -89,8 +88,8 @@ local processfloat = function(float) local aftercaption = "" if manuscriptmode then aftercaption = "\n\\vspace{-20pt}" - if float.attributes["aftercaptionspace"] then - aftercaption = "\\vspace{" .. float.attributes["aftercaptionspace"] .. "}\n" + if float.attributes["after-caption-space"] then + aftercaption = "\\vspace{" .. float.attributes["after-caption-space"] .. "}\n" end end