[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] Changes to hyperref.el
From: |
Ralf Angeli |
Subject: |
[AUCTeX-diffs] Changes to hyperref.el |
Date: |
Sat, 21 Jun 2008 20:57:41 +0000 |
CVSROOT: /cvsroot/auctex
Module name: auctex
Changes by: Ralf Angeli <angeli> 08/06/21 20:57:41
Index: hyperref.el
===================================================================
RCS file: hyperref.el
diff -N hyperref.el
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ hyperref.el 21 Jun 2008 20:57:40 -0000 1.1
@@ -0,0 +1,119 @@
+;;; hyperref.el --- AUCTeX style for the hyperref class.
+
+;; Copyright (C) 2008 Free Software Foundation, Inc.
+
+;; Author: Ralf Angeli <address@hidden>
+;; Maintainer: address@hidden
+;; Created: 2008-06-21
+;; Keywords: tex
+
+;; 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.
+
+;;; Commentary:
+
+;; This file adds support for the hyperref package.
+
+;;; Code:
+
+(defvar LaTeX-hyperref-package-options
+ '("a4paper" "a5paper" "anchorcolor" "b5paper" "backref" "baseurl"
+ "bookmarks" "bookmarksnumbered" "bookmarksopen"
+ "bookmarksopenlevel \maxdimen" "bookmarkstype" "breaklinks"
+ "CJKbookmarks" "citebordercolor" "citecolor" "colorlinks" "debug"
+ "draft" "dvipdf" "dvipdfm" "dvipdfmx" "dvips" "dvipsone"
+ "dviwindo" "encap" "executivepaper" "extension" "filebordercolor"
+ "filecolor" "final" "frenchlinks" "hyperfigures" "hyperfootnotes"
+ "hyperindex" "hypertex" "hypertexnames" "implicit" "latex2html"
+ "legalpaper" "letterpaper" "linkbordercolor" "linkcolor"
+ "linktocpage" "menubordercolor" "menucolor" "nativepdf"
+ "naturalnames" "nesting" "pageanchor" "pagebackref"
+ "pagebordercolor" "pagecolor" "pdfauthor" "pdfborder"
+ "pdfcenterwindow" "pdfcreator" "pdfdirection" "pdfdisplaydoctitle"
+ "pdfduplex" "pdffitwindow" "pdfhighlight" "pdfkeywords" "pdflang"
+ "pdfmark" "pdfmenubar" "pdfnewwindow" "pdfnonfullscreenpagemode"
+ "pdfnumcopies" "pdfpagelayout" "pdfpagemode" "pdfpagelabels"
+ "pdfpagescrop" "pdfpagetransition" "pdfpicktrackbypdfsize"
+ "pdfprintarea" "pdfprintclip" "pdfprintpagerange"
+ "pdfprintscaling" "pdfproducer" "pdfstartpage" "pdfstartview"
+ "pdfsubject" "pdftex" "pdftitle" "pdftoolbar" "pdfview"
+ "pdfviewarea" "pdfviewclip" "pdfwindowui" "plainpages" "ps2pdf"
+ "raiselinks" "runbordercolor" "setpagesize" "tex4ht" "textures"
+ "unicode" "urlbordercolor" "urlcolor" "verbose" "vtex" "xetex")
+ "Package options for the hyperref package.")
+
+(TeX-add-style-hook
+ "hyperref"
+ (lambda ()
+ ;; hyperref.sty loads url.sty
+ (TeX-run-style-hooks "url")
+ (TeX-add-symbols
+ '("href" "URL" "Text")
+ '("nolinkurl" t)
+ '("hyperbaseurl" t)
+ '("hyperimage" "Image URL" "Text")
+ '("hyperdef" "Category" "Name" "Text")
+ '("hyperref" "URL" "Category" "Name" "Text")
+ '("hyperlink" "Name" "Text")
+ '("hypertarget" "Name" "Text")
+ '("phantomsection" 0)
+ '("autoref" TeX-arg-ref)
+ '("ref*" TeX-arg-ref)
+ '("pageref*" TeX-arg-ref)
+ '("pdfstringdef" "Macro name" "TeX string")
+ '("texorpdfstring" "TeX string" "PDF string")
+ '("hypercalcbp" t)
+ '("Acrobatmenu" "Menu option" "Text")
+ '("TextField" ["Parameters"] "Label")
+ '("CheckBox" ["Parameters"] "Label")
+ '("ChoiceMenu" ["Parameters"] "Label" "Choices")
+ '("PushButton" ["Parameters"] "Label")
+ '("Submit" ["Parameters"] "Label")
+ '("Reset" ["Parameters"] "Label")
+ '("LayoutTextField" "Label" "Field")
+ '("LayoutChoiceField" "Label" "Field")
+ '("LayoutCheckField" "Label" "Field")
+ '("MakeRadioField" "Width" "Height")
+ '("MakeCheckField" "Width" "Height")
+ '("MakeTextField" "Width" "Height")
+ '("MakeChoiceField" "Width" "Height")
+ '("MakeButtonField" "Text"))
+
+ (add-to-list 'LaTeX-verbatim-macros-with-braces-local "nolinkurl")
+ (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperbaseurl")
+ (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperimage")
+ (add-to-list 'LaTeX-verbatim-macros-with-braces-local "hyperref")
+
+ ;; Fontification
+ (when (and (featurep 'font-latex)
+ (eq TeX-install-font-lock 'font-latex-setup))
+ (font-latex-add-keywords '(("href" "{{")
+ ("nolinkurl" "{")
+ ("hyperbaseurl" "{")
+ ("hyperimage" "{{")
+ ("hyperdef" "{{{")
+ ("hyperref" "{{{{")
+ ("hyperlink" "{{")
+ ("hypertarget" "{{")
+ ("autoref" "{")
+ ("ref" "*{")
+ ("pageref" "*{"))
+ 'reference)
+ ;; For syntactic fontification, e.g. verbatim constructs.
+ (font-latex-set-syntactic-keywords))))
+
+;;; hyperref.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] Changes to hyperref.el,
Ralf Angeli <=