src/Pure/Thy/latex.scala
changeset 74789 a5c23da73fca
parent 74786 543f932f64b8
child 74790 3ce6fb9db485
--- a/src/Pure/Thy/latex.scala	Sun Nov 14 21:52:13 2021 +0100
+++ b/src/Pure/Thy/latex.scala	Mon Nov 15 11:38:14 2021 +0100
@@ -77,8 +77,8 @@
   {
     def latex_output(latex_text: Text): String = apply(latex_text)
 
-    def latex_macro(name: String, arg: Text): Text =
-      XML.string("\\" + name + "{") ::: arg ::: XML.string("}")
+    def latex_macro(name: String, body: Text): Text =
+      XML.enclose("\\" + name + "{", "}", body)
 
     def index_item(item: Index_Item.Value): String =
     {