1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
;;; x-symbol-bib.el --- token language "BibTeX macro" for package x-symbol
;; Copyright (C) 2002-2003 Free Software Foundation, Inc.
;;
;; Author: Christoph Wedler <wedler@users.sourceforge.net>
;; Maintainer: (Please use `M-x x-symbol-package-bug' to contact the maintainer)
;; Version: 4.5
;; Keywords: WYSIWYG, LaTeX, HTML, wp, math, internationalization
;; X-URL: http://x-symbol.sourceforge.net/
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;;; Commentary:
;; If you want to use package x-symbol, please visit the URL (use
;; \\[x-symbol-package-web]) and read the info (use \\[x-symbol-package-info]).
;;
;;; Code:
(provide 'x-symbol-bib)
(require 'x-symbol-tex)
;;;===========================================================================
;;; General language accesses, see `x-symbol-language-access-alist'
;;;===========================================================================
(defcustom x-symbol-bib-auto-style '(t nil nil nil nil nil)
"Values for X-Symbol's buffer-local variables with language `bib'.
See language access `x-symbol-LANG-auto-style'."
:group 'x-symbol-bib
:group 'x-symbol-mode
:type 'x-symbol-auto-style)
(defcustom x-symbol-bib-modeline-name "bib"
"Modeline name of token language `bib'.
See language access `x-symbol-LANG-modeline-name'."
:group 'x-symbol-bib
:type 'string)
(defcustom x-symbol-bib-header-groups-alist x-symbol-tex-header-groups-alist
"Header/submenu specification of the specific menu for language `bib'.
See language access `x-symbol-LANG-header-groups-alist'."
:group 'x-symbol-bib
:group 'x-symbol-input-init
:type 'x-symbol-headers)
(defcustom x-symbol-bib-electric-ignore x-symbol-tex-electric-ignore
"Specification restricting input method ELECTRIC with language `bib'.
See language access `x-symbol-LANG-electric-ignore'."
:group 'x-symbol-bib
:group 'x-symbol-input-control
:type 'x-symbol-function-or-regexp)
(defcustom x-symbol-bib-class-alist x-symbol-tex-class-alist
"Token classes displayed by info in echo area, for language `bib'.
See language access `x-symbol-LANG-class-alist'."
:group 'x-symbol-bib
:group 'x-symbol-info-strings
:type 'x-symbol-class-info)
(defcustom x-symbol-bib-class-face-alist x-symbol-tex-class-face-alist
"Color scheme in language specific grid and info, for language `bib'.
See language access `x-symbol-LANG-class-face-alist'."
:group 'x-symbol-bib
:group 'x-symbol-input-init
:group 'x-symbol-info-general
:type 'x-symbol-class-faces)
;;;===========================================================================
;;; foo
;;;===========================================================================
(defvar x-symbol-bib-token-grammar
'(x-symbol-make-grammar
:encode-spec (?\\ (math . "[a-z@-Z]"))
:decode-regexp "\\\\\\(?:[@A-Za-z]+\\|[-{}#_&]\\)\\|{\\\\\\(?:[ckvuHr]\\(?: [A-Za-z]\\|{}\\|\\\\ \\)\\|[@A-Za-z]+\\|[.~^\"'`=]\\(?:[A-Za-z]\\|{}\\|\\\\[ij]\\)\\)}"
:decode-spec (?\\)
:input-spec (?\\ (math . "[a-z@-Z]"))
:token-list x-symbol-bib-default-token-list)
"Grammar of token language `bib'.
See language access `x-symbol-LANG-token-grammar'.")
(defvar x-symbol-bib-required-fonts x-symbol-tex-required-fonts
"Features providing required fonts for language `bib'.
See language access `x-symbol-LANG-required-fonts'.")
(defvar x-symbol-bib-user-table nil
"User table defining TeX macros, used in `x-symbol-bib-table'.")
(defvar x-symbol-bib-table
(append x-symbol-bib-user-table x-symbol-tex-table)
"Table defining `bib' tokens for the characters.
See language access `x-symbol-LANG-table'. Default value uses all
definitions in `x-symbol-tex-table'. Use `x-symbol-bib-user-table' to
define private TeX macros or shadow existing ones. ")
(defvar x-symbol-bib-generated-data nil
"Generated data for token language `bib'.
See language access `x-symbol-LANG-generated-data'.")
(defun x-symbol-bib-default-token-list (tokens)
(if (stringp tokens)
(list (list (concat "{" tokens "}")))
(mapcar (lambda (x)
(cons x (if (string-match "\\\\[A-Za-z]+\\'" x) 'math)))
tokens)))
;;; Local IspellPersDict: .ispell_xsymb
;;; x-symbol-bib.el ends here
|