diff --git a/typst.py b/typst.py index 1743c41..c64f092 100755 --- a/typst.py +++ b/typst.py @@ -87,7 +87,7 @@ def generate(self): def write_typst_code(self, stream): """Takes a formula and wraps it in typst""" stream.write( - f"""#set page(margin: (x: 0pt, y: 0pt)) + f"""#set page(margin: (x: 0pt, y: 0pt), fill: none) #set text({self.options.font_size}pt) {self.options.typst_code}""" )