X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=blobdiff_plain;f=pret-lam.lua;fp=pret-lam.lua;h=86d7272c4f65615276747be84e1b0c39f6ef236f;hp=be2c55b02eb18fa30006e64aa554c273e1c3fb7d;hb=db2dce12a0b9b988be956104b908e28375bbfd1c;hpb=56de744d12dde761456828e48af1e6f74c1790e0 diff --git a/pret-lam.lua b/pret-lam.lua index be2c55b..86d7272 100644 --- a/pret-lam.lua +++ b/pret-lam.lua @@ -36,7 +36,7 @@ local keywords = { ['letrec'] = {}, ['letnonrec'] = {}, ['in'] = {}, - ['DEFAULT'] = {}, + ['DEFAULT'] = {small = true}, } local in_block = 0 @@ -222,6 +222,9 @@ function vis.flush_line(str,nested) if keywords[res] then -- Make all keywords bold word = "{\\bold " .. word .. "}" + if keywords[res].small then + word = "\\small" .. word -- Curlies were added above + end else -- Process any subscripts in the word word = do_subscripts(word)