Initial commit
This commit is contained in:
97
elpa/auctex-11.91.0/style/varioref.el
Normal file
97
elpa/auctex-11.91.0/style/varioref.el
Normal file
@@ -0,0 +1,97 @@
|
||||
;;; varioref.el --- AUCTeX style file with support for varioref.sty
|
||||
|
||||
;; Copyright (C) 1999, 2013, 2015 Free Software Foundation, Inc.
|
||||
|
||||
;; Author: Carsten Dominik <dominik@strw.leidenuniv.nl>
|
||||
;; Mads Jensen <mje@inducks.org>
|
||||
;; Maintainer: auctex-devel@gnu.org
|
||||
|
||||
;; This file is part of AUCTeX.
|
||||
|
||||
;; AUCTeX 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 3, or (at your option)
|
||||
;; any later version.
|
||||
|
||||
;; AUCTeX 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 AUCTeX; see the file COPYING. If not, write to the Free
|
||||
;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
;; 02110-1301, USA.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(TeX-add-style-hook "varioref"
|
||||
(lambda ()
|
||||
|
||||
(TeX-add-symbols
|
||||
|
||||
;; The macros with label arguments
|
||||
'("vref" TeX-arg-ref)
|
||||
'("Vref" TeX-arg-ref)
|
||||
'("vrefrange" [ "Same page text" ] TeX-arg-ref TeX-arg-ref)
|
||||
'("vrefrange*" [ "Same page text" ] TeX-arg-ref TeX-arg-ref)
|
||||
'("vref*" TeX-arg-ref)
|
||||
'("Vref" TeX-arg-ref)
|
||||
'("Ref" TeX-arg-ref)
|
||||
'("vpageref" [ "Same page text" ] [ "Different page text" ] TeX-arg-ref)
|
||||
'("vpageref*" [ "Same page text" ] [ "Different page text" ]
|
||||
TeX-arg-ref)
|
||||
'("fullref" TeX-arg-ref)
|
||||
'("labelformat" TeX-arg-counter t)
|
||||
|
||||
'("vpagerefrange" [ "Same page text" ] TeX-arg-ref TeX-arg-ref)
|
||||
'("vpagerefrange*" [ "Same page text" ] TeX-arg-ref TeX-arg-ref)
|
||||
|
||||
;; And the other macros used for customization
|
||||
"reftextbefore" "reftextfacebefore"
|
||||
"reftextafter" "reftextfaceafter" "reftexlabelrange"
|
||||
"reftextfaraway" "vreftextvario" "vrefwarning"
|
||||
"vpagerefnum" "vrefshowerrors")
|
||||
|
||||
;; Install completion for labels. Only offer completion for
|
||||
;; commands that take only one reference as an argument
|
||||
(setq TeX-complete-list
|
||||
(append
|
||||
'(("\\\\[Vv]ref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
|
||||
("\\\\vref\\*?{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
|
||||
("\\\\Ref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
|
||||
("\\\\vref\\*{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
|
||||
("\\\\fullref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
|
||||
("\\\\vpageref\\*?\\(\\[[^]]*\\]\\)*{\\([^{}\n\r\\%,]*\\)"
|
||||
2 LaTeX-label-list "}"))
|
||||
TeX-complete-list))
|
||||
|
||||
;; Fontification
|
||||
(when (and (fboundp 'font-latex-add-keywords)
|
||||
(eq TeX-install-font-lock 'font-latex-setup))
|
||||
(font-latex-add-keywords '(;; vref is already in font-latex.el,
|
||||
;; so don't add it here again
|
||||
("Vref" "*{")
|
||||
("vpageref" "*[[{")
|
||||
("vrefrange" "*[{{")
|
||||
("Ref" "{")
|
||||
("fullref" "{")
|
||||
("vpagerefrange" "*[{{"))
|
||||
'reference))
|
||||
|
||||
;; Activate RefTeX reference style.
|
||||
(and LaTeX-reftex-ref-style-auto-activate
|
||||
(fboundp 'reftex-ref-style-activate)
|
||||
(reftex-ref-style-activate "Varioref")))
|
||||
LaTeX-dialect)
|
||||
|
||||
(defvar LaTeX-varioref-package-options
|
||||
'("draft" "final" "afrikaans" "american" "austrian" "naustrian" "basque"
|
||||
"brazil" "breton" "bahasam" "catalan" "croatian" "czech" "danish"
|
||||
"dutch" "english" "esperanto" "finnish" "french" "galician" "german"
|
||||
"icelandic" "ngerman" "greek" "italian" "magyar" "norsk" "nynorsk"
|
||||
"polish" "portuges" "romanian" "russian" "slovak" "slovene"
|
||||
"spanish" "swedish" "turkish" "ukrainian" "francais" "germanb")
|
||||
"Package options for the varioref package.")
|
||||
|
||||
;;; varioref.el ends here
|
||||
Reference in New Issue
Block a user