yatex

changeset 582:f4c2dca86202

Add "mcfamily" and "gtfamily"
author HIROSE Yuuji <yuuji@gentei.org>
date Sat, 08 Feb 2020 18:31:52 +0900
parents 995282fc8bf5
children d4831b3672f8
files yatex.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/yatex.el	Sat Feb 08 18:22:59 2020 +0900
     1.2 +++ b/yatex.el	Sat Feb 08 18:31:52 2020 +0900
     1.3 @@ -1,6 +1,6 @@
     1.4  ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
     1.5  ;;; (c)1991-2020 by HIROSE Yuuji.[yuuji@yatex.org]
     1.6 -;;; Last modified Sat Feb  8 18:22:02 2020 on firestorm
     1.7 +;;; Last modified Sat Feb  8 18:31:09 2020 on firestorm
     1.8  ;;; $Id$
     1.9  ;;; The latest version of this software is always available at;
    1.10  ;;; https://www.yatex.org/
    1.11 @@ -425,7 +425,7 @@
    1.12  ; Set {\Large }-like completion
    1.13  (defvar fontsize-table
    1.14    '(("rm") ("em") ("bf") ("boldmath") ("it") ("sl") ("sf") ("sc") ("tt")
    1.15 -    ("dg") ("dm")
    1.16 +    ("dg") ("dm") ("mc") ("mcfamily") ("gt") ("gtfamily")
    1.17      ("tiny") ("scriptsize") ("footnotesize") ("small")("normalsize")
    1.18      ("large") ("Large") ("LARGE") ("huge") ("Huge")
    1.19      ("rmfamily") ("sffamily") ("ttfamily")
    1.20 @@ -438,6 +438,8 @@
    1.21    '(("rm" . "rmfamily")
    1.22      ("sf" . "sffamily")
    1.23      ("tt" . "ttfamily")
    1.24 +    ("mc" . "mcfamily")
    1.25 +    ("gt" . "gtfamily")
    1.26      ("md" . "mdseries")
    1.27      ("bf" . "bfseries")
    1.28      ("up" . "upshape")