markup commands, \normal-text and \medium (the latter thanks to
Bruce Fairchild).
+2005-08-10 Mats Bengtsson <mabe@drongo.s3.kth.se>
+
+ * scm/define-markup-commands.scm (normal-text): Added 2 new
+ markup commands, \normal-text and \medium (the latter thanks to
+ Bruce Fairchild).
+
2005-08-08 Mats Bengtsson <mabe@drongo.s3.kth.se>
* Documentation/user/programming-interface.itely (Markup
(interpret-markup
layout (prepend-alist-chain 'font-shape 'upright props) arg))
+(def-markup-command (normal-text layout props arg) (markup?)
+ "Set all font related properties (except the size) to get the default normal text font, no matter what font was used earlier."
+ ;; ugh - latin1
+ (interpret-markup layout
+ (cons '((font-family . roman) (font-shape . upright) (font-series . medium) (font-encoding . latin1)) props)
+ arg))
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; symbols.
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
(def-markup-command (doublesharp layout props) ()
"Draw a double sharp symbol."