Index: auctex/font-latex.el
diff -u auctex/font-latex.el:5.135 auctex/font-latex.el:5.136
--- auctex/font-latex.el:5.135  Tue Aug 23 08:17:50 2005
+++ auctex/font-latex.el        Thu Sep  8 12:38:28 2005
@@ -287,6 +287,7 @@
     ("sectioning-5"
      ("paragraph" "subparagraph" "subsubparagraph")
      font-latex-sectioning-5-face 2 (sectioning 1 t))
+    ("slide-title" () font-latex-slide-title-face 2 (command 1 t))
     ("textual"
      ("item" "title" "author" "date" "thanks" "address" "caption"
       "textsuperscript")
@@ -928,6 +929,20 @@
   '((t (:height 0.8)))
   "Face used for subscripts."
   :group 'font-latex-highlighting-faces)
+
+(defface font-latex-slide-title-face
+  (let* ((scale 1.2)
+        (size (when (featurep 'xemacs)
+                (round (* 0.9 (face-height 'default) scale)))))
+    (if (featurep 'xemacs)
+       `((t (:bold t :family "helvetica")))
+      `((t (:inherit (variable-pitch font-lock-type-face)
+                    :weight bold :height ,scale)))))
+  "Face for slide titles."
+  :group 'font-latex-highlighting-faces)
+(when (featurep 'xemacs)
+  (set-face-parent 'font-latex-slide-title-face 'font-lock-type-face
+                  nil nil 'append))
 
 
 ;;; Setup


_______________________________________________
auctex-diffs mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/auctex-diffs

Reply via email to