reftex-vars.el 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920
  1. ;;; reftex-vars.el --- configuration variables for RefTeX
  2. ;; Copyright (C) 1997-1999, 2001-2012 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <dominik@science.uva.nl>
  4. ;; Maintainer: auctex-devel@gnu.org
  5. ;; Version: 4.31
  6. ;; Package: reftex
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;;; Code:
  20. (defvar reftex-tables-dirty)
  21. (eval-when-compile (require 'cl))
  22. (eval-and-compile
  23. (defun reftex-set-dirty (symbol value)
  24. (setq reftex-tables-dirty t)
  25. (set symbol value)))
  26. ;; Define the two constants which are needed during compilation
  27. (eval-and-compile
  28. (defconst reftex-label-alist-builtin
  29. '(
  30. ;; Some aliases, mostly for backward compatibility
  31. (Sideways "Alias for -->rotating" (rotating))
  32. (AMSTeX "amsmath with eqref macro"
  33. ((nil ?e nil "~\\eqref{%s}")
  34. amsmath))
  35. ;; Individual package defaults
  36. (amsmath "AMS-LaTeX math environments"
  37. (("align" ?e nil nil eqnarray-like)
  38. ("gather" ?e nil nil eqnarray-like)
  39. ("multline" ?e nil nil t)
  40. ("flalign" ?e nil nil eqnarray-like)
  41. ("alignat" ?e nil nil alignat-like)
  42. ("xalignat" ?e nil nil alignat-like)
  43. ("xxalignat" ?e nil nil alignat-like)
  44. ("subequations" ?e nil nil t)))
  45. (endnotes "The \\endnote macro"
  46. (("\\endnote[]{}" ?N "en:" "~\\ref{%s}" 2
  47. (regexp "endnotes?" "notes?" "Anmerkung\\(en\\)?" "Anm\\."))))
  48. (fancybox "The Beqnarray environment"
  49. (("Beqnarray" ?e nil nil eqnarray-like)))
  50. (floatfig "The floatingfigure environment"
  51. (("floatingfigure" ?f nil nil caption)))
  52. (longtable "The longtable environment"
  53. (("longtable" ?t nil nil caption)))
  54. (picinpar "The figwindow and tabwindow environments"
  55. (("figwindow" ?f nil nil 1)
  56. ("tabwindow" ?f nil nil 1)))
  57. (rotating "Sidewaysfigure and table"
  58. (("sidewaysfigure" ?f nil nil caption)
  59. ("sidewaystable" ?t nil nil caption)))
  60. (sidecap "CSfigure and SCtable"
  61. (("SCfigure" ?f nil nil caption)
  62. ("SCtable" ?t nil nil caption)))
  63. (subfigure "Subfigure environments/macro"
  64. (("subfigure" ?f nil nil caption)
  65. ("subfigure*" ?f nil nil caption)
  66. ("\\subfigure[]{}" ?f nil nil 1)))
  67. (supertab "Supertabular environment"
  68. (("supertabular" ?t nil nil "\\tablecaption{")))
  69. (wrapfig "The wrapfigure environment"
  70. (("wrapfigure" ?f nil nil caption)))
  71. ;; The LaTeX core stuff
  72. (LaTeX "LaTeX default environments"
  73. (("section" ?s "%S" "~\\ref{%s}" (nil . t)
  74. (regexp "parts?" "chapters?" "chap\\." "sections?" "sect?\\."
  75. "paragraphs?" "par\\."
  76. "\\\\S" "\247" "Teile?" "Kapitel" "Kap\\." "Abschnitte?"
  77. "appendi\\(x\\|ces\\)" "App\\." "Anh\"?ange?" "Anh\\."))
  78. ("enumerate" ?i "item:" "~\\ref{%s}" item
  79. (regexp "items?" "Punkte?"))
  80. ("equation" ?e "eq:" "~(\\ref{%s})" t
  81. (regexp "equations?" "eqs?\\." "eqn\\." "Gleichung\\(en\\)?" "Gl\\."))
  82. ("eqnarray" ?e "eq:" nil eqnarray-like)
  83. ("figure" ?f "fig:" "~\\ref{%s}" caption
  84. (regexp "figure?[sn]?" "figs?\\." "Abbildung\\(en\\)?" "Abb\\."))
  85. ("figure*" ?f nil nil caption)
  86. ("table" ?t "tab:" "~\\ref{%s}" caption
  87. (regexp "tables?" "tab\\." "Tabellen?"))
  88. ("table*" ?t nil nil caption)
  89. ("\\footnote[]{}" ?n "fn:" "~\\ref{%s}" 2
  90. (regexp "footnotes?" "Fussnoten?"))
  91. ("any" ?\ " " "~\\ref{%s}" nil)
  92. ;; The label macro is hard coded, but it *could* be defined like this:
  93. ;;("\\label{*}" nil nil nil nil)
  94. ))
  95. )
  96. "The default label environment descriptions.
  97. Lower-case symbols correspond to a style file of the same name in the LaTeX
  98. distribution. Mixed-case symbols are convenience aliases.")
  99. (defconst reftex-cite-format-builtin
  100. '((default "Default macro \\cite{%l}"
  101. "\\cite[]{%l}")
  102. (natbib "The Natbib package"
  103. ((?\C-m . "\\cite[][]{%l}")
  104. (?t . "\\citet[][]{%l}")
  105. (?T . "\\citet*[][]{%l}")
  106. (?p . "\\citep[][]{%l}")
  107. (?P . "\\citep*[][]{%l}")
  108. (?e . "\\citep[e.g.][]{%l}")
  109. (?s . "\\citep[see][]{%l}")
  110. (?a . "\\citeauthor{%l}")
  111. (?A . "\\citeauthor*{%l}")
  112. (?y . "\\citeyear{%l}")
  113. (?n . "\\nocite{%l}")))
  114. (amsrefs "The AMSRefs package"
  115. ((?\C-m . "\\cite{%l}")
  116. (?p . "\\cite{%l}")
  117. (?P . "\\cites{%l}")
  118. (?t . "\\ocite{%l}")
  119. (?T . "\\ocites{%l}")
  120. (?y . "\\ycite{%l}")
  121. (?Y . "\\ycites{%l}")
  122. (?a . "\\citeauthor{%l}")
  123. (?A . "\\citeauthory{%l}")
  124. (?f . "\\fullcite{%l}")
  125. (?F . "\\fullocite{%l}")
  126. (?n . "\\nocite{%l}")))
  127. (jurabib "The Jurabib package"
  128. ((?\C-m . "\\cite{%l}")
  129. (?c . "\\cite[][]{%l}")
  130. (?t . "\\citet{%l}")
  131. (?p . "\\citep{%l}")
  132. (?e . "\\citep[e.g.][]{%l}")
  133. (?s . "\\citep[see][]{%l}")
  134. (?u . "\\fullcite{%l}")
  135. (?i . "\\citetitle{%l}")
  136. (?a . "\\citeauthor{%l}")
  137. (?e . "\\citefield{}{%l}")
  138. (?y . "\\citeyear{%l}")
  139. (?f . "\\footcite{%l}")
  140. (?F . "\\footcite[][]{%l}")
  141. (?l . "\\footfullcite{%l}")))
  142. (bibentry "The Bibentry package"
  143. "\\bibentry{%l}")
  144. (harvard "The Harvard package"
  145. ((?\C-m . "\\cite[]{%l}")
  146. (?p . "\\cite[]{%l}")
  147. (?t . "\\citeasnoun{%l}")
  148. (?n . "\\citeasnoun{%l}")
  149. (?s . "\\possessivecite{%l}")
  150. (?e . "\\citeaffixed{%l}{?}")
  151. (?y . "\\citeyear{%l}")
  152. (?a . "\\citename{%l}")))
  153. (chicago "The Chicago package"
  154. ((?\C-m . "\\cite[]{%l}")
  155. (?t . "\\citeN[]{%l}")
  156. (?T . "\\shortciteN{%l}")
  157. (?p . "\\cite[]{%l}")
  158. (?P . "\\shortcite{%l}")
  159. (?a . "\\citeA{%l}")
  160. (?A . "\\shortciteA{%l}")
  161. (?y . "\\citeyear{%l}")))
  162. (astron "The Astron package"
  163. ((?\C-m . "\\cite[]{%l}")
  164. (?p . "\\cite[]{%l}" )
  165. (?t . "%2a (\\cite{%l})")))
  166. (author-year "Do-it-yourself Author-year"
  167. ((?\C-m . "\\cite{%l}")
  168. (?t . "%2a (%y)\\nocite{%l}")
  169. (?p . "(%2a %y\\nocite{%l})")))
  170. (locally "Full info in parenthesis"
  171. "(%2a %y, %j %v, %P, %e: %b, %u, %s %<)")
  172. )
  173. "Builtin versions of the citation format.
  174. The following conventions are valid for all alist entries:
  175. `?\C-m' should always point to a straight \\cite{%l} macro.
  176. `?t' should point to a textual citation (citation as a noun).
  177. `?p' should point to a parenthetical citation.")
  178. (defconst reftex-index-macros-builtin
  179. '((default "Default \\index and \\glossary macros"
  180. (("\\index{*}" "idx" ?i "" nil t)
  181. ("\\glossary{*}" "glo" ?g "" nil t)))
  182. (multind "The multind.sty package"
  183. (("\\index{}{*}" 1 ?i "" nil t)))
  184. (index "The index.sty package"
  185. (("\\index[]{*}" 1 ?i "" nil t)
  186. ("\\index*[]{*}" 1 ?I "" nil nil)))
  187. (Index-Shortcut "index.sty with \\shortindexingon"
  188. (("\\index[]{*}" 1 ?i "" nil t)
  189. ("\\index*[]{*}" 1 ?I "" nil nil)
  190. ("^[]{*}" 1 ?^ "" texmathp t)
  191. ("_[]{*}" 1 ?_ "" texmathp nil))))
  192. "Builtin stuff for `reftex-index-macros'.
  193. Lower-case symbols correspond to a style file of the same name in the LaTeX
  194. distribution. Mixed-case symbols are convenience aliases.")
  195. )
  196. ;; Configuration Variables and User Options for RefTeX ------------------
  197. (defgroup reftex nil
  198. "LaTeX label and citation support."
  199. :tag "RefTeX"
  200. :link '(url-link :tag "Home Page"
  201. "http://staff.science.uva.nl/~dominik/Tools/reftex/")
  202. :link '(emacs-commentary-link :tag "Commentary in reftex.el" "reftex.el")
  203. :link '(custom-manual "(reftex)Top")
  204. :prefix "reftex-"
  205. :group 'tex)
  206. ;; Table of contents configuration --------------------------------------
  207. (defgroup reftex-table-of-contents-browser nil
  208. "A multifile table of contents browser."
  209. :group 'reftex)
  210. (defcustom reftex-include-file-commands '("include" "input")
  211. "LaTeX commands which input another file.
  212. The file name is expected after the command, either in braces or separated
  213. by whitespace."
  214. :group 'reftex-table-of-contents-browser
  215. :type '(repeat string))
  216. (defcustom reftex-max-section-depth 12
  217. "Maximum depth of section levels in document structure.
  218. Standard LaTeX needs default is 7, but there are packages for which this
  219. needs to be larger."
  220. :group 'reftex-table-of-contents-browser
  221. :type 'integer)
  222. ;; LaTeX section commands and level numbers
  223. (defcustom reftex-section-levels
  224. '(
  225. ("part" . 0)
  226. ("chapter" . 1)
  227. ("section" . 2)
  228. ("subsection" . 3)
  229. ("subsubsection" . 4)
  230. ("paragraph" . 5)
  231. ("subparagraph" . 6)
  232. ("addchap" . -1) ; KOMA-Script
  233. ("addsec" . -2) ; KOMA-Script
  234. ;;; ("minisec" . -7) ; KOMA-Script
  235. )
  236. "Commands and levels used for defining sections in the document.
  237. This is an alist with each element like (COMMAND-NAME . LEVEL).
  238. The car of each cons cell is the name of the section macro (without
  239. the backslash). The cdr is a number indicating its level. A negative
  240. level means the same level as the positive value, but the section will
  241. never get a number. The cdr may also be a function which will be called
  242. to after the section-re matched to determine the level.
  243. This list is also used for promotion and demotion of sectioning commands.
  244. If you are using a document class which has several sets of sectioning
  245. commands, promotion only works correctly if this list is sorted first
  246. by set, then within each set by level. The promotion commands always
  247. select the nearest entry with the correct new level."
  248. :group 'reftex-table-of-contents-browser
  249. :set 'reftex-set-dirty
  250. :type '(repeat
  251. (cons (string :tag "sectioning macro" "")
  252. (choice
  253. (number :tag "level " 0)
  254. (symbol :tag "function " my-level-func)))))
  255. (defcustom reftex-toc-max-level 100
  256. "*The maximum level of toc entries which will be included in the TOC.
  257. Section headings with a bigger level will be ignored. In RefTeX, chapters
  258. are level 1, sections are level 2 etc.
  259. This variable can be changed from within the *toc* buffer with the `t' key."
  260. :group 'reftex-table-of-contents-browser
  261. :type 'integer)
  262. (defcustom reftex-part-resets-chapter nil
  263. "*Non-nil means, \\part is like any other sectioning command.
  264. This means, part numbers will be included in the numbering of chapters, and
  265. chapter counters will be reset for each part.
  266. When nil (the default), parts are special, do not reset the chapter counter
  267. and also do not show up in chapter numbers."
  268. :group 'reftex-table-of-contents-browser
  269. :type 'boolean)
  270. (defcustom reftex-auto-recenter-toc 'frame
  271. "*Non-nil means, turn automatic recentering of *TOC* window on.
  272. When active, the *TOC* window will always show the section you
  273. are currently working in. Recentering happens whenever Emacs is idle for
  274. more than `reftex-idle-time' seconds.
  275. Value t means, turn on immediately when RefTeX gets started. Then,
  276. recentering will work for any TOC window created during the session.
  277. Value 'frame (the default) means, turn automatic recentering on only while the
  278. dedicated TOC frame does exist, and do the recentering only in that frame. So
  279. when creating that frame (with \"d\" key in an ordinary TOC window), the
  280. automatic recentering is turned on. When the frame gets destroyed, automatic
  281. recentering is turned off again.
  282. This feature can be turned on and off from the menu
  283. \(Ref->Options)."
  284. :group 'reftex-table-of-contents-browser
  285. :type '(choice
  286. (const :tag "never" nil)
  287. (const :tag "always" t)
  288. (const :tag "in dedicated frame only" frame)))
  289. (defcustom reftex-toc-split-windows-horizontally nil
  290. "*Non-nil means, create TOC window by splitting window horizontally."
  291. :group 'reftex-table-of-contents-browser
  292. :type 'boolean)
  293. (defcustom reftex-toc-split-windows-fraction .3
  294. "*Fraction of the width or height of the frame to be used for TOC window.
  295. See also `reftex-toc-split-windows-horizontally'."
  296. :group 'reftex-table-of-contents-browser
  297. :type 'number)
  298. (defvar reftex-toc-split-windows-horizontally-fraction 0.5
  299. "This variable is obsolete, use `reftex-toc-split-windows-fraction' instead.")
  300. (defcustom reftex-toc-keep-other-windows t
  301. "*Non-nil means, split the selected window to display the *toc* buffer.
  302. This helps to keep the window configuration, but makes the *toc* small.
  303. When nil, all other windows except the selected one will be deleted, so
  304. that the *toc* window fills half the frame."
  305. :group 'reftex-table-of-contents-browser
  306. :type 'boolean)
  307. (defcustom reftex-toc-include-file-boundaries nil
  308. "*Non-nil means, include file boundaries in *toc* buffer.
  309. This flag can be toggled from within the *toc* buffer with the `F' key."
  310. :group 'reftex-table-of-contents-browser
  311. :type 'boolean)
  312. (defcustom reftex-toc-include-labels nil
  313. "*Non-nil means, include labels in *toc* buffer.
  314. This flag can be toggled from within the *toc* buffer with the `l' key."
  315. :group 'reftex-table-of-contents-browser
  316. :type 'boolean)
  317. (defcustom reftex-toc-include-index-entries nil
  318. "*Non-nil means, include index entries in *toc* buffer.
  319. This flag can be toggled from within the *toc* buffer with the `i' key."
  320. :group 'reftex-table-of-contents-browser
  321. :type 'boolean)
  322. (defcustom reftex-toc-confirm-promotion 2
  323. "*Non-nil means, promotion/demotion commands first prompt for confirmation.
  324. When nil, the command is executed immediately. When this is an integer
  325. N, ask for confirmation only if N or more section commands are going to be
  326. changed."
  327. :group 'reftex-table-of-contents-browser
  328. :type '(choice
  329. (const :tag "Never" nil)
  330. (const :tag "Always" t)
  331. (number :tag "When more than N sections" :value 2)))
  332. (defcustom reftex-toc-include-context nil
  333. "*Non-nil means, include context with labels in the *toc* buffer.
  334. Context will only be shown when labels are visible as well.
  335. This flag can be toggled from within the *toc* buffer with the `c' key."
  336. :group 'reftex-table-of-contents-browser
  337. :type 'boolean)
  338. (defcustom reftex-toc-follow-mode nil
  339. "*Non-nil means, point in *toc* buffer will cause other window to follow.
  340. The other window will show the corresponding part of the document.
  341. This flag can be toggled from within the *toc* buffer with the `f' key."
  342. :group 'reftex-table-of-contents-browser
  343. :type 'boolean)
  344. (defcustom reftex-revisit-to-follow nil
  345. "*Non-nil means, follow-mode will revisit files if necessary.
  346. When nil, follow-mode will be suspended for stuff in unvisited files."
  347. :group 'reftex-table-of-contents-browser
  348. :group 'reftex-referencing-labels
  349. :type 'boolean)
  350. (defcustom reftex-toc-mode-hook nil
  351. "Mode hook for `reftex-toc-mode'."
  352. :group 'reftex-table-of-contents-browser
  353. :type 'hook)
  354. ;; Label Support Configuration
  355. (defgroup reftex-label-support nil
  356. "Support for creation, insertion and referencing of labels in LaTeX."
  357. :group 'reftex)
  358. (defgroup reftex-defining-label-environments nil
  359. "Definition of environments and macros to do with label."
  360. :group 'reftex-label-support)
  361. (defcustom reftex-default-label-alist-entries
  362. '(amsmath endnotes fancybox floatfig longtable picinpar
  363. rotating sidecap subfigure supertab wrapfig LaTeX)
  364. "Default label alist specifications. LaTeX should always be the last entry.
  365. The value of this variable is a list of symbols with associations in the
  366. constant `reftex-label-alist-builtin'. Check that constant for a full list
  367. of options."
  368. :group 'reftex-defining-label-environments
  369. :set 'reftex-set-dirty
  370. :type `(set
  371. :indent 4
  372. :inline t
  373. :greedy t
  374. ,@(mapcar
  375. (lambda (x)
  376. (list 'const :tag (concat (symbol-name (nth 0 x))
  377. ": " (nth 1 x))
  378. (nth 0 x)))
  379. reftex-label-alist-builtin)))
  380. (defcustom reftex-label-alist nil
  381. "Alist with information on environments for \\label-\\ref use.
  382. This docstring is easier to understand after reading the configuration
  383. examples in `reftex.el'. Looking at the builtin defaults in the constant
  384. `reftex-label-alist-builtin' may also be instructive.
  385. Set this variable to define additions and changes to the default. The only
  386. things you MUST NOT change is that `?s' is the type indicator for section
  387. labels, and SPC for the `any' label type. These are hard-coded at other
  388. places in the code.
  389. The value of the variable must be a list of items. Each item is a list
  390. itself and has the following structure:
  391. (ENV-OR-MACRO TYPE-KEY LABEL-PREFIX REFERENCE-FORMAT CONTEXT-METHOD
  392. (MAGIC-WORD ... ) TOC-LEVEL)
  393. Each list entry describes either an environment carrying a counter for use
  394. with \\label and \\ref, or a LaTeX macro defining a label as (or inside)
  395. one of its arguments. The elements of each list entry are:
  396. ENV-OR-MACRO
  397. Name of the environment (like \"table\") or macro (like \"\\\\myfig\").
  398. For macros, indicate the macro arguments for best results, as in
  399. \"\\\\myfig[]{}{}{*}{}\". Use square brackets for optional arguments,
  400. a star to mark the label argument, if any. The macro does not have to
  401. have a label argument - you could also use \\label{..} inside one of
  402. its arguments.
  403. Special names: `section' for section labels, `any' to define a group
  404. which contains all labels.
  405. This may also be a function to do local parsing and identify point
  406. to be in a non-standard label environment. The function must take
  407. an argument BOUND and limit backward searches to this value. It
  408. should return either nil or a cons cell (FUNCTION . POSITION) with
  409. the function symbol and the position where the special environment
  410. starts. See the Info documentation for an example.
  411. Finally this may also be nil if the entry is only meant to change
  412. some settings associated with the type indicator character (see below).
  413. TYPE-KEY
  414. Type indicator character, like `?t', must be a printable ASCII character.
  415. The type indicator is a single character which defines a label type.
  416. Any label inside the environment or macro is assumed to belong to this
  417. type. The same character may occur several times in this list, to cover
  418. cases in which different environments carry the same label type (like
  419. `equation' and `eqnarray').
  420. If the type indicator is nil and the macro has a label argument {*},
  421. the macro defines neutral labels just like \\label. In this case
  422. the reminder of this entry is ignored.
  423. LABEL-PREFIX
  424. Label prefix string, like \"tab:\".
  425. The prefix is a short string used as the start of a label. It may be the
  426. empty string. The prefix may contain the following `%' escapes:
  427. %f Current file name with directory and extension stripped.
  428. %F Current file name relative to directory of master file.
  429. %m Master file name, directory and extension stripped.
  430. %M Directory name (without path) where master file is located.
  431. %u User login name, on systems which support this.
  432. %S A section prefix derived with variable `reftex-section-prefixes'.
  433. Example: In a file `intro.tex', \"eq:%f:\" will become \"eq:intro:\").
  434. REFERENCE-FORMAT
  435. Format string for reference insert in buffer. `%s' will be replaced by
  436. the label.
  437. When the format starts with `~', the `~' will only be inserted if
  438. there is not already a whitespace before point.
  439. CONTEXT-METHOD
  440. Indication on how to find the short context.
  441. - If nil, use the text following the \\label{...} macro.
  442. - If t, use
  443. - the section heading for section labels.
  444. - text following the \\begin{...} statement of environments.
  445. (not a good choice for environments like eqnarray or enumerate,
  446. where one has several labels in a single environment).
  447. - text after the macro name (starting with the first arg) for macros.
  448. - If an integer, use the nth argument of the macro. As a special case,
  449. 1000 means to get text after the last macro argument.
  450. - If a string, use as regexp to search *backward* from the label. Context
  451. is then the text following the end of the match. E.g. putting this to
  452. \"\\\\\\\\caption[[{]\" will use the caption in a figure or table
  453. environment.
  454. \"\\\\\\\\begin{eqnarray}\\\\|\\\\\\\\\\\\\\\\\" works for eqnarrays.
  455. - If any of `caption', `item', `eqnarray-like', `alignat-like', this
  456. symbol will internally be translated into an appropriate regexp
  457. (see also the variable `reftex-default-context-regexps').
  458. - If a function, call this function with the name of the environment/macro
  459. as argument. On call, point will be just after the \\label macro. The
  460. function is expected to return a suitable context string. It should
  461. throw an exception (error) when failing to find context.
  462. As an example, here is a function returning the 10 chars following
  463. the label macro as context:
  464. (defun my-context-function (env-or-mac)
  465. (if (> (point-max) (+ 10 (point)))
  466. (buffer-substring (point) (+ 10 (point)))
  467. (error \"Buffer too small\")))
  468. Label context is used in two ways by RefTeX: For display in the label
  469. menu, and to derive a label string. If you want to use a different
  470. method for each of these, specify them as a dotted pair.
  471. E.g. `(nil . t)' uses the text after the label (nil) for display, and
  472. text from the default position (t) to derive a label string. This is
  473. actually used for section labels.
  474. MAGIC-WORDS
  475. List of magic words which identify a reference to be of this type.
  476. If the word before point is equal to one of these words when calling
  477. `reftex-reference', the label list offered will be automatically
  478. restricted to labels of the correct type.
  479. If the first element of this wordlist is the symbol `regexp', the
  480. strings are interpreted as regular expressions. RefTeX will add
  481. a \"\\\\W\" to the beginning and other stuff to the end of the regexp.
  482. TOC-LEVEL
  483. The integer level at which this environment should be added to the
  484. table of contents. See also `reftex-section-levels'. A positive
  485. value will number the entries mixed with the sectioning commands of
  486. the same level. A negative value will make unnumbered entries.
  487. Useful only for theorem-like environments, will be ignored for macros.
  488. When omitted or nil, no TOC entries will be made.
  489. If the type indicator characters of two or more entries are the same, RefTeX
  490. will use
  491. - the first non-nil format and prefix
  492. - the magic words of all involved entries.
  493. Any list entry may also be a symbol. If that has an association in
  494. `reftex-label-alist-builtin', the cddr of that association is spliced into the
  495. list. However, builtin defaults should normally be set with the variable
  496. `reftex-default-label-alist-entries."
  497. :group 'reftex-defining-label-environments
  498. :set 'reftex-set-dirty
  499. :type
  500. `(repeat
  501. (choice :tag "Package or Detailed "
  502. :value ("" ?a nil nil nil nil)
  503. (list :tag "Detailed Entry"
  504. :value ("" ?a nil nil nil nil)
  505. (choice :tag "Environment or \\macro "
  506. (const :tag "Ignore, just use typekey" nil)
  507. (string "")
  508. (symbol :tag "Special parser" my-parser))
  509. (choice :tag "Type specification "
  510. (const :tag "unspecified, like in \\label" nil)
  511. (character :tag "Char " ?a))
  512. (choice :tag "Label prefix string "
  513. (const :tag "Default" nil)
  514. (string :tag "String" "lab:"))
  515. (choice :tag "Label reference format"
  516. (const :tag "Default" nil)
  517. (string :tag "String" "~\\ref{%s}"))
  518. (choice :tag "Context method "
  519. (const :tag "Default position" t)
  520. (const :tag "After label" nil)
  521. (number :tag "Macro arg nr" 1)
  522. (regexp :tag "Regexp" "")
  523. (const :tag "Caption in float" caption)
  524. (const :tag "Item in list" item)
  525. (const :tag "Eqnarray-like" eqnarray-like)
  526. (const :tag "Alignat-like" alignat-like)
  527. (symbol :tag "Function" my-func))
  528. (repeat :tag "Magic words" :extra-offset 2 (string))
  529. (option (choice :tag "Make TOC entry "
  530. (const :tag "No entry" nil)
  531. (integer :tag "Level" :value -3))))
  532. (choice
  533. :tag "Package"
  534. :value AMSTeX
  535. ,@(mapcar
  536. (lambda (x)
  537. (list 'const :tag (concat (symbol-name (nth 0 x)))
  538. (nth 0 x)))
  539. reftex-label-alist-builtin)))))
  540. (defcustom reftex-section-prefixes '((0 . "part:") (1 . "cha:") (t . "sec:"))
  541. "Prefixes for section labels.
  542. When the label prefix given in an entry in `reftex-label-alist' contains `%S',
  543. this list is used to determine the correct prefix string depending on the
  544. current section level.
  545. The list is an alist, with each entry of the form (KEY . PREFIX)
  546. Possible keys are sectioning macro names like `chapter', section levels
  547. \(as given in `reftex-section-levels'), and t for the default."
  548. :group 'reftex-defining-label-environments
  549. :type '(repeat
  550. (cons :value (0 . "")
  551. (choice
  552. (string :tag "macro name")
  553. (integer :tag "section level")
  554. (const :tag "default" t))
  555. (string :tag "Prefix"))))
  556. (defcustom reftex-default-context-regexps
  557. '((caption . "\\\\\\(rot\\)?caption\\*?[[{]")
  558. (item . "\\\\item\\(\\[[^]]*\\]\\)?")
  559. (eqnarray-like . "\\\\begin{%s}\\|\\\\\\\\")
  560. (alignat-like . "\\\\begin{%s}{[0-9]*}\\|\\\\\\\\"))
  561. "Alist with default regular expressions for finding context.
  562. The form (format regexp (regexp-quote environment)) is used to calculate
  563. the final regular expression - so %s will be replaced with the environment
  564. or macro."
  565. :group 'reftex-defining-label-environments
  566. :type '(repeat (cons (symbol) (regexp))))
  567. (defcustom reftex-trust-label-prefix nil
  568. "Non-nil means, trust the label prefix when determining label type.
  569. It is customary to use special label prefixes to distinguish different label
  570. types. The label prefixes have no syntactic meaning in LaTeX (unless
  571. special packages like fancyref are being used). RefTeX can and by
  572. default does parse around each label to detect the correct label type,
  573. but this process can be slow when a document contains thousands of
  574. labels. If you use label prefixes consistently, you may speed up
  575. document parsing by setting this variable to a non-nil value. RefTeX
  576. will then compare the label prefix with the prefixes found in
  577. `reftex-label-alist' and derive the correct label type in this way.
  578. Possible values for this option are:
  579. t This means to trust any label prefixes found.
  580. regexp If a regexp, only prefixes matched by the regexp are trusted.
  581. list List of accepted prefixes, as strings. The colon is part of
  582. the prefix, e.g. (\"fn:\" \"eqn:\" \"item:\").
  583. nil Never trust a label prefix.
  584. The only disadvantage of using this feature is that the label context
  585. displayed in the label selection buffer along with each label is
  586. simply some text after the label definition. This is no problem if you
  587. place labels keeping this in mind (e.g. *before* the equation, *at
  588. the beginning* of a fig/tab caption ...). Anyway, it is probably best
  589. to use the regexp or the list value types to fine-tune this feature.
  590. For example, if your document contains thousands of footnotes with
  591. labels fn:xxx, you may want to set this variable to the value \"^fn:$\" or
  592. \(\"fn:\"). Then RefTeX will still do extensive parsing for any
  593. non-footnote labels."
  594. :group 'reftex-defining-label-environments
  595. :type '(choice
  596. (const :tag "Always" t)
  597. (const :tag "Never" nil)
  598. (regexp)
  599. (repeat :tag "List"
  600. (string :tag "prefix (with colon)"))))
  601. (defcustom reftex-special-environment-functions nil
  602. "List of functions to be called when trying to figure out current environment.
  603. These are special functions to detect \"environments\" which do not
  604. start with \\begin and end with \\end. Some LaTeX packages seem to
  605. use such non-standard ways to set up environment-like constructs. The
  606. purpose of each function in this list is to detect if point is
  607. currently inside such a special \"environment\". If the environment
  608. carries a label, you must also set up an entry for it in
  609. `reftex-label-alist'.
  610. The function should check if point is currently in the special
  611. environment it was written to detect. If so, the function must return
  612. a cons cell (NAME . POSITION). NAME is the name of the environment
  613. detected and POSITION is the buffer position where the environment
  614. starts. The function must return nil on failure to detect the
  615. environment.
  616. The function must take an argument BOUND. If non-nil, BOUND is a
  617. boundary for backwards searches which should be observed.
  618. Here is an example. The LaTeX package linguex.sty defines list macros
  619. `\\ex.', `\\a.', etc for lists which are terminated by `\\z.' or an empty
  620. line.
  621. \\ex. \\label{ex:12} Some text in an exotic language ...
  622. \\a. \\label{ex:13} more stuff
  623. \\b. \\label{ex:14} still more stuff
  624. ... more text after the empty line terminating all lists
  625. And here is the setup for RefTeX:
  626. 1. Define a dummy environment for this in `reftex-label-alist'. Dummy means,
  627. make up an environment name even though it is not used with \\begin and
  628. \\end. Here we use \"linguex\" as this name.
  629. (setq reftex-label-alist
  630. '((\"linguex\" ?x \"ex:\" \"~\\\\ref{%s}\" nil (\"Example\" \"Ex.\"))))
  631. 2. Write a function to detect the list macros and the determinators as well.
  632. (defun my-detect-linguex-list (bound)
  633. (let ((pos (point)) p1)
  634. (save-excursion
  635. ;; Search for any of the linguex item macros at the beginning of a line
  636. (if (re-search-backward
  637. \"^[ \\t]*\\\\(\\\\\\\\\\\\(ex\\\\|a\\\\|b\\\\|c\\\\|d\\\\|e\\\\|f\\\\)g?\\\\.\\\\)\" bound t)
  638. (progn
  639. (setq p1 (match-beginning 1))
  640. ;; Make sure no empty line or \\z. is between us and the item macro
  641. (if (re-search-forward \"\\n[ \\t]*\\n\\\\|\\\\\\\\z\\\\.\" pos t)
  642. ;; Return nil because list was already closed
  643. nil
  644. ;; OK, we got it
  645. (cons \"linguex\" p1)))
  646. ;; Return nil for not found
  647. nil))))
  648. 3. Tell RefTeX to use this function
  649. (setq reftex-special-environment-functions '(my-detect-linguex-list))
  650. "
  651. :group 'reftex-defining-label-environments
  652. :type 'hook)
  653. ;; Label insertion
  654. (defgroup reftex-making-and-inserting-labels nil
  655. "Options on how to create new labels."
  656. :group 'reftex-label-support)
  657. (defcustom reftex-insert-label-flags '("s" "sft")
  658. "Flags governing label insertion. First flag DERIVE, second flag PROMPT.
  659. If DERIVE is t, RefTeX will try to derive a sensible label from context.
  660. A section label for example will be derived from the section heading.
  661. The conversion of the context to a valid label is governed by the
  662. specifications given in `reftex-derive-label-parameters'.
  663. If RefTeX fails to derive a label, it will prompt the user.
  664. If DERIVE is nil, the label generated will consist of the prefix and a
  665. unique number, like `eq:23'.
  666. If PROMPT is t, the user will be prompted for a label string. The prompt will
  667. already contain the prefix, and (if DERIVE is t) a default label derived from
  668. context. When PROMPT is nil, the default label will be inserted without
  669. query.
  670. So the combination of DERIVE and PROMPT controls label insertion. Here is a
  671. table describing all four possibilities:
  672. DERIVE PROMPT ACTION
  673. -------------------------------------------------------------------------
  674. nil nil Insert simple label, like eq:22 or sec:13. No query.
  675. nil t Prompt for label.
  676. t nil Derive a label from context and insert without query.
  677. t t Derive a label from context and prompt for confirmation.
  678. Each flag may be set to t, nil, or a string of label type letters
  679. indicating the label types for which it should be true. The strings work
  680. like character classes.
  681. Thus, the combination may be set differently for each label type. The
  682. default settings \"s\" and \"sft\" mean: Derive section labels from headings
  683. \(with confirmation). Prompt for figure and table labels. Use simple labels
  684. without confirmation for everything else.
  685. The available label types are: s (section), f (figure), t (table), i (item),
  686. e (equation), n (footnote), N (endnote), plus any definitions in
  687. `reftex-label-alist'."
  688. :group 'reftex-making-and-inserting-labels
  689. :type '(list (choice :tag "Derive label from context"
  690. (const :tag "always" t)
  691. (const :tag "never" nil)
  692. (string :tag "selected label types" ""))
  693. (choice :tag "Prompt for label string "
  694. :entry-format " %b %v"
  695. (const :tag "always" t)
  696. (const :tag "never" nil)
  697. (string :tag "selected label types" ""))))
  698. (defcustom reftex-string-to-label-function 'reftex-string-to-label
  699. "Function to turn an arbitrary string into a valid label.
  700. RefTeX's default function uses the variable `reftex-derive-label-parameters'."
  701. :group 'reftex-making-and-inserting-labels
  702. :type 'symbol)
  703. (defcustom reftex-translate-to-ascii-function 'reftex-latin1-to-ascii
  704. "Filter function which will process a context string before it is used
  705. to derive a label from it. The intended application is to convert ISO or
  706. Mule characters into something valid in labels. The default function
  707. removes the accents from Latin-1 characters. X-Symbol (>=2.6) sets this
  708. variable to the much more general `x-symbol-translate-to-ascii'."
  709. :group 'reftex-making-and-inserting-labels
  710. :type 'symbol)
  711. (defcustom reftex-derive-label-parameters '(3 20 t 1 "-"
  712. ("the" "on" "in" "off" "a" "for" "by" "of" "and" "is" "to") t)
  713. "Parameters for converting a string into a label.
  714. This variable is a list of the following items.
  715. NWORDS Number of words to use.
  716. MAXCHAR Maximum number of characters in a label string.
  717. INVALID nil: Throw away any words containing characters invalid in labels.
  718. t: Throw away only the invalid characters, not the whole word.
  719. ABBREV nil: Never abbreviate words.
  720. t: Always abbreviate words (see `reftex-abbrev-parameters').
  721. not t and not nil: Abbreviate words if necessary to shorten
  722. label string below MAXCHAR.
  723. SEPARATOR String separating different words in the label.
  724. IGNOREWORDS List of words which should not be part of labels.
  725. DOWNCASE t: Downcase words before using them."
  726. :group 'reftex-making-and-inserting-labels
  727. :type '(list (integer :tag "Number of words " 3)
  728. (integer :tag "Maximum label length " 20)
  729. (choice :tag "Invalid characters in words"
  730. (const :tag "throw away entire word" nil)
  731. (const :tag "throw away single chars" t))
  732. (choice :tag "Abbreviate words "
  733. (const :tag "never" nil)
  734. (const :tag "always" t)
  735. (const :tag "when label is too long" 1))
  736. (string :tag "Separator between words " "-")
  737. (repeat :tag "Ignore words"
  738. :entry-format " %i %d %v"
  739. (string :tag ""))
  740. (option (boolean :tag "Downcase words "))))
  741. (defcustom reftex-label-illegal-re "[^-a-zA-Z0-9_+=:;,.]"
  742. "Regexp matching characters not valid in labels."
  743. :group 'reftex-making-and-inserting-labels
  744. :type '(regexp :tag "Regular Expression"))
  745. (defcustom reftex-abbrev-parameters '(4 2 "^aeiou" "aeiou")
  746. "Parameters for abbreviation of words.
  747. This variable is a list of the following items.
  748. MIN-CHARS Minimum number of characters remaining after abbreviation.
  749. MIN-KILL Minimum number of characters to remove when abbreviating words.
  750. BEFORE Character class before abbrev point in word.
  751. AFTER Character class after abbrev point in word."
  752. :group 'reftex-making-and-inserting-labels
  753. :type '(list
  754. (integer :tag "Minimum chars per word" 4)
  755. (integer :tag "Shorten by at least " 2)
  756. (string :tag "cut before char class " "^saeiou")
  757. (string :tag "cut after char class " "aeiou")))
  758. (defcustom reftex-format-label-function nil
  759. "Function which produces the string to insert as a label definition.
  760. Normally should be nil, unless you want to do something fancy.
  761. The function will be called with two arguments, the LABEL and the DEFAULT
  762. FORMAT, which usually is `\\label{%s}'. The function should return the
  763. string to insert into the buffer."
  764. :group 'reftex-making-and-inserting-labels
  765. :type 'function)
  766. ;; Label referencing
  767. (defgroup reftex-referencing-labels nil
  768. "Options on how to reference labels."
  769. :group 'reftex-label-support)
  770. (eval-and-compile
  771. (defconst reftex-tmp
  772. '((const :tag "on" t)
  773. (const :tag "off" nil)
  774. (string :tag "Selected label types"))))
  775. (defcustom reftex-label-menu-flags '(t t nil nil nil nil t nil)
  776. "List of flags governing the label menu makeup.
  777. The flags are:
  778. TABLE-OF-CONTENTS Show the labels embedded in a table of context.
  779. SECTION-NUMBERS Include section numbers (like 4.1.3) in table of contents.
  780. COUNTERS Show counters. This just numbers the labels in the menu.
  781. NO-CONTEXT Non-nil means do NOT show the short context.
  782. FOLLOW Follow full context in other window.
  783. SHOW-COMMENTED Show labels from regions which are commented out.
  784. MATCH-IN-TOC Obsolete flag.
  785. SHOW FILES Show begin and end of included files.
  786. Each of these flags can be set to t or nil, or to a string of type letters
  787. indicating the label types for which it should be true. These strings work
  788. like character classes in regular expressions. Thus, setting one of the
  789. flags to \"sf\" makes the flag true for section and figure labels, nil
  790. for everything else. Setting it to \"^sf\" makes it the other way round.
  791. The available label types are: s (section), f (figure), t (table), i (item),
  792. e (equation), n (footnote), plus any definitions in `reftex-label-alist'.
  793. Most options can also be switched from the label menu itself - so if you
  794. decide here to not have a table of contents in the label menu, you can still
  795. get one interactively during selection from the label menu."
  796. :group 'reftex-referencing-labels
  797. :type
  798. `(list
  799. (choice :tag "Embed in table of contents " ,@reftex-tmp)
  800. (choice :tag "Show section numbers " ,@reftex-tmp)
  801. (choice :tag "Show individual counters " ,@reftex-tmp)
  802. (choice :tag "Hide short context " ,@reftex-tmp)
  803. (choice :tag "Follow context in other window " ,@reftex-tmp)
  804. (choice :tag "Show commented labels " ,@reftex-tmp)
  805. (choice :tag "Obsolete flag, Don't use. " ,@reftex-tmp)
  806. (choice :tag "Show begin/end of included files" ,@reftex-tmp)))
  807. (defcustom reftex-multiref-punctuation '((?, . ", ") (?- . "--") (?+ . " and "))
  808. "Punctuation strings for multiple references.
  809. When marking is used in the selection buffer to select several references,
  810. this variable associates the 3 marking characters `,-+' with prefix strings
  811. to be inserted into the buffer before the corresponding \\ref macro.
  812. This is used to string together whole reference sets, like
  813. `eqs. 1,2,3-5,6 and 7' in a single call to `reftex-reference'. See manual."
  814. :group 'reftex-referencing-labels
  815. :type '(repeat (cons (character) (string))))
  816. (defcustom reftex-vref-is-default nil
  817. "*Non-nil means, the varioref macro \\vref is used as default.
  818. In the selection buffer, the `v' key toggles the reference macro between
  819. `\\ref' and `\\vref'. The value of this variable determines the default
  820. which is active when entering the selection process.
  821. Instead of nil or t, this may also be a string of type letters indicating
  822. the label types for which it should be true."
  823. :group 'reftex-referencing-labels
  824. :type `(choice :tag "\\vref is default macro" ,@reftex-tmp))
  825. ;;;###autoload(put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
  826. (defcustom reftex-fref-is-default nil
  827. "*Non-nil means, the fancyref macro \\fref is used as default.
  828. In the selection buffer, the `V' key toggles the reference macro between
  829. `\\ref', `\\fref' and `\\Fref'. The value of this variable determines
  830. the default which is active when entering the selection process.
  831. Instead of nil or t, this may also be a string of type letters indicating
  832. the label types for which it should be true."
  833. :group 'reftex-referencing-labels
  834. :type `(choice :tag "\\fref is default macro" ,@reftex-tmp))
  835. ;;;###autoload(put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))
  836. (defcustom reftex-level-indent 2
  837. "*Number of spaces to be used for indentation per section level."
  838. :group 'reftex-referencing-labels
  839. :type 'integer)
  840. ;;;###autoload(put 'reftex-level-indent 'safe-local-variable 'integerp)
  841. (defcustom reftex-guess-label-type t
  842. "*Non-nil means, `reftex-reference' will try to guess the label type.
  843. To do that, RefTeX will look at the word before the cursor and compare it with
  844. the words given in `reftex-label-alist'. When it finds a match, RefTeX will
  845. immediately offer the correct label menu - otherwise it will prompt you for
  846. a label type. If you set this variable to nil, RefTeX will always prompt."
  847. :group 'reftex-referencing-labels
  848. :type 'boolean)
  849. ;;;###autoload(put 'reftex-guess-label-type 'safe-local-variable (lambda (x) (memq x '(nil t))))
  850. (defcustom reftex-format-ref-function nil
  851. "Function which produces the string to insert as a reference.
  852. Normally should be nil, because the format to insert a reference can
  853. already be specified in `reftex-label-alist'.
  854. This hook also is used by the special commands to insert `\\vref' and `\\fref'
  855. references, so even if you set this, your setting will be ignored by
  856. the special commands.
  857. The function will be called with two arguments, the LABEL and the DEFAULT
  858. FORMAT, which normally is `~\\ref{%s}'. The function should return the
  859. string to insert into the buffer."
  860. :group 'reftex-referencing-labels
  861. :type 'function)
  862. (defcustom reftex-select-label-mode-hook nil
  863. "Mode hook for reftex-select-label-mode."
  864. :group 'reftex-referencing-labels
  865. :type 'hook)
  866. ;; BibteX citation configuration ----------------------------------------
  867. (defgroup reftex-citation-support nil
  868. "Support for referencing bibliographic data with BibTeX."
  869. :group 'reftex)
  870. (defcustom reftex-bibliography-commands '("bibliography" "nobibliography")
  871. "LaTeX commands which specify the BibTeX databases to use with the document."
  872. :group 'reftex-citation-support
  873. :type '(repeat string))
  874. (defvar reftex-bibfile-ignore-list nil) ; compatibility
  875. (defcustom reftex-bibfile-ignore-regexps nil
  876. "*List of regular expressions to exclude files in \\bibliography{..}.
  877. File names matched by these regexps will not be parsed by RefTeX.
  878. Intended for files which contain only `@string' macro definitions and the
  879. like, which are ignored by RefTeX anyway."
  880. :group 'reftex-citation-support
  881. :set 'reftex-set-dirty
  882. :type '(repeat (regexp)))
  883. (defcustom reftex-default-bibliography nil
  884. "*List of BibTeX database files which should be used if none are specified.
  885. When `reftex-citation' is called from a document which has neither a
  886. `\\bibliography{..}' statement nor a `thebibliography' environment,
  887. RefTeX will scan these files instead. Intended for using `reftex-citation'
  888. in non-LaTeX files. The files will be searched along the BIBINPUTS or TEXBIB
  889. path."
  890. :group 'reftex-citation-support
  891. :type '(repeat (file)))
  892. (defcustom reftex-sort-bibtex-matches 'reverse-year
  893. "*Sorting of the entries found in BibTeX databases by reftex-citation.
  894. Possible values:
  895. nil Do not sort entries.
  896. 'author Sort entries by author name.
  897. 'year Sort entries by increasing year.
  898. 'reverse-year Sort entries by decreasing year."
  899. :group 'reftex-citation-support
  900. :type '(choice (const :tag "not" nil)
  901. (const :tag "by author" author)
  902. (const :tag "by year" year)
  903. (const :tag "by year, reversed" reverse-year)))
  904. (defcustom reftex-cite-format 'default
  905. "*The format of citations to be inserted into the buffer.
  906. It can be a string or an alist or a symbol. In the simplest case this
  907. is just the string \"\\cite{%l}\", which is also the default. See the
  908. definition of `reftex-cite-format-builtin' for more complex examples.
  909. If `reftex-cite-format' is a string, it will be used as the format.
  910. In the format, the following percent escapes will be expanded.
  911. %l The BibTeX label of the citation.
  912. %a List of author names, see also `reftex-cite-punctuation'.
  913. %2a Like %a, but abbreviate more than 2 authors like Jones et al.
  914. %A First author name only.
  915. %e Works like %a, but on list of editor names. (%2e and %E work a well)
  916. It is also possible to access all other BibTeX database fields:
  917. %b booktitle %c chapter %d edition %h howpublished
  918. %i institution %j journal %k key %m month
  919. %n number %o organization %p pages %P first page
  920. %r address %s school %u publisher %t title
  921. %v volume %y year
  922. %B booktitle, abbreviated %T title, abbreviated
  923. Usually, only %l is needed. The other stuff is mainly for the echo area
  924. display, and for (setq reftex-comment-citations t).
  925. %< as a special operator kills punctuation and space around it after the
  926. string has been formatted.
  927. A pair of square brackets indicates an optional argument, and RefTeX
  928. will prompt for the values of these arguments.
  929. Beware that all this only works with BibTeX database files. When
  930. citations are made from the \\bibitems in an explicit thebibliography
  931. environment, only %l is available.
  932. If `reftex-cite-format' is an alist of characters and strings, the user
  933. will be prompted for a character to select one of the possible format
  934. strings.
  935. In order to configure this variable, you can either set
  936. `reftex-cite-format' directly yourself or set it to the SYMBOL of one of
  937. the predefined styles. The predefined symbols are those which have an
  938. association in the constant `reftex-cite-format-builtin'.
  939. E.g.: (setq reftex-cite-format 'natbib)"
  940. :group 'reftex-citation-support
  941. :type
  942. `(choice
  943. :format "%{%t%}: \n%[Value Menu%] %v"
  944. (radio :tag "Symbolic Builtins"
  945. :indent 4
  946. :value default
  947. ,@(mapcar
  948. (lambda (x)
  949. (list 'const :tag (concat (symbol-name (nth 0 x))
  950. ": " (nth 1 x))
  951. (nth 0 x)))
  952. reftex-cite-format-builtin))
  953. (string :tag "format string" "\\cite{%l}")
  954. (repeat :tag "key-ed format strings"
  955. :value ((?\r . "\\cite{%l}")
  956. (?t . "\\cite{%l}") (?p . "\\cite{%l}"))
  957. (cons (character :tag "Key character" ?\r)
  958. (string :tag "Format string" "")))))
  959. (defcustom reftex-cite-prompt-optional-args 'maybe
  960. "*Non-nil means, prompt for empty optional arguments in cite macros.
  961. When an entry in `reftex-cite-format' ist given with square brackets to
  962. indicate optional arguments (for example \\cite[][]{%l}), RefTeX can
  963. prompt for values. Possible values are:
  964. nil Never prompt for optional arguments
  965. t Always prompt
  966. maybe Prompt only if `reftex-citation' was called with C-u prefix arg
  967. Unnecessary empty optional arguments are removed before insertion into
  968. the buffer. See `reftex-cite-cleanup-optional-args'."
  969. :group 'reftex-citation-support
  970. :type '(choice
  971. (const :tag "Always" t)
  972. (const :tag "When called with prefix arg" maybe)
  973. (const :tag "Never" nil)))
  974. (defcustom reftex-cite-cleanup-optional-args t
  975. "*Non-nil means, remove unnecessary empty optional arguments in cite macros.
  976. The cite macros provided by some packages (for example
  977. natbib) allow specifying two optional arguments, one for a prefix to
  978. the citation, and a second for a postfix. When only one optional
  979. argument is given, it is interpreted as postfix. When this option is
  980. t, RefTeX removes unnecessary empty optional arguments from the cite
  981. macro before insertion. For example, it will change
  982. \\cite[][]{Jones} -> \\cite{Jones}
  983. \\cite[][Chapter 1]{Jones} -> \\cite[Chapter 1]{Jones}
  984. \\cite[see][]{Jones} -> \\cite[see][]{Jones}
  985. \\cite[see][Chapter 1]{Jones} -> \\cite{Jones}
  986. Is is possible that other packages have other conventions about which
  987. optional argument is interpreted how - that is why this cleaning up
  988. can be turned off."
  989. :group 'reftex-citation-support
  990. :type 'boolean)
  991. (defcustom reftex-comment-citations nil
  992. "*Non-nil means add a comment for each citation describing the full entry.
  993. The comment is formatted according to `reftex-cite-comment-format'."
  994. :group 'reftex-citation-support
  995. :type 'boolean)
  996. (defcustom reftex-cite-comment-format
  997. "%% %2a %y, %j %v, %P, %b, %e, %u, %s %<\n"
  998. "Citation format used for commented citations. Must NOT contain %l.
  999. See the variable `reftex-cite-format' for possible percent escapes."
  1000. :group 'reftex-citation-support
  1001. :type 'string)
  1002. (defcustom reftex-cite-view-format "%2a %y, %T, %B, %j %v:%P, %s %<"
  1003. "Citation format used to display citation info in the message area.
  1004. Must NOT contain %l. See the variable `reftex-cite-format' for
  1005. possible percent escapes."
  1006. :group 'reftex-citation-support
  1007. :group 'reftex-viewing-cross-references
  1008. :type 'string)
  1009. (defcustom reftex-cite-punctuation '(", " " \\& " " {\\it et al.}")
  1010. "Punctuation for formatting of name lists in citations.
  1011. This is a list of 3 strings.
  1012. 1. Normal names separator, like \", \" in Jones, Brown and Miller
  1013. 2. Final names separator, like \" and \" in Jones, Brown and Miller
  1014. 3. The \"et al\" string, like \" {\\it et al.}\" in Jones {\\it et al.}"
  1015. :group 'reftex-citation-support
  1016. :type '(list
  1017. (string :tag "Separator for names ")
  1018. (string :tag "Separator for last name in list")
  1019. (string :tag "string used as et al. ")))
  1020. (defcustom reftex-format-cite-function nil
  1021. "Function which produces the string to insert as a citation.
  1022. Normally should be nil, because the format to insert a reference can
  1023. already be specified in `reftex-cite-format'.
  1024. The function will be called with two arguments, the CITATION KEY and the
  1025. DEFAULT FORMAT, which is taken from `reftex-cite-format'. The function
  1026. should return the string to insert into the buffer."
  1027. :group 'reftex-citation-support
  1028. :type 'function)
  1029. (defcustom reftex-select-bib-mode-hook nil
  1030. "Mode hook for reftex-select-bib-mode."
  1031. :group 'reftex-citation-support
  1032. :type 'hook)
  1033. ;; Index Support Configuration
  1034. (defgroup reftex-index-support nil
  1035. "Support for viewing and editing the index."
  1036. :group 'reftex)
  1037. (defcustom reftex-support-index t
  1038. "*Non-nil means, index entries are parsed as well.
  1039. Index support is resource intensive and the internal structure holding the
  1040. parsed information can become quite big. Therefore it can be turned off.
  1041. When this is nil and you execute a command which requires index support,
  1042. you will be asked for confirmation to turn it on and rescan the document."
  1043. :group 'reftex-index-support
  1044. :type 'boolean)
  1045. (defcustom reftex-index-special-chars '("!" "|" "@" "\"" "\\")
  1046. "Special characters in index entries. The value is a list of five strings.
  1047. These correspond to the makeindex keywords LEVEL ENCAP ACTUAL QUOTE ESCAPE."
  1048. :group 'reftex-index-support
  1049. :type '(list
  1050. (string :tag "LEVEL separator")
  1051. (string :tag "ENCAP char ")
  1052. (string :tag "ACTUAL char ")
  1053. (string :tag "QUOTE char ")
  1054. (string :tag "ESCAPE char ")))
  1055. (defcustom reftex-index-macros nil
  1056. "Macros which define index entries. The structure is
  1057. \(MACRO INDEX-TAG KEY PREFIX EXCLUDE REPEAT)
  1058. MACRO is the macro. Arguments should be denoted by empty braces like
  1059. \\index[]{*}. Use square brackets to denote optional arguments. The star
  1060. marks where the index key is.
  1061. INDEX-TAG is a short name of the index. \"idx\" and \"glo\" are
  1062. reserved for the default index and the glossary. Other indices can be
  1063. defined as well. If this is an integer, the Nth argument of the macro
  1064. holds the index tag.
  1065. KEY is a character which is used to identify the macro for input with
  1066. \\[reftex-index]. ?i, ?I, and ?g are reserved for default index and glossary.
  1067. PREFIX can be a prefix which is added to the KEY part of the index entry.
  1068. If you have a macro \\newcommand{\\molec}[1]{#1\\index{Molecules!#1}}, this
  1069. prefix should be \"Molecules!\". See the manual for details.
  1070. EXCLUDE can be a function. If this function exists and returns a non-nil
  1071. value, the index entry at point is ignored. This was implemented to support
  1072. the (deprecated) `^' and `_' shortcuts in the LaTeX2e `index' package.
  1073. REPEAT, if non-nil, means the index macro does not typeset the entry in
  1074. the text, so that the text has to be repeated outside the index macro.
  1075. Needed for `reftex-index-selection-or-word' and for indexing from the
  1076. phrase buffer.
  1077. The final entry may also be a symbol if this entry has a association
  1078. in the variable `reftex-index-macros-builtin' to specify the main
  1079. indexing package you are using. Valid values are currently
  1080. default The LaTeX default - unnecessary to specify this one
  1081. multind The multind.sty package
  1082. index The index.sty package
  1083. index-shortcut The index.sty packages with the ^ and _ shortcuts.
  1084. Should not be used - only for old documents.
  1085. Note that AUCTeX sets these things internally for RefTeX as well, so
  1086. with a sufficiently new version of AUCTeX, you should not set the
  1087. package here."
  1088. :group 'reftex-index-support
  1089. :set 'reftex-set-dirty
  1090. :type `(list
  1091. (repeat
  1092. :inline t
  1093. (list :value ("" "idx" ?a "" nil)
  1094. (string :tag "Macro with args")
  1095. (choice :tag "Index Tag "
  1096. (string)
  1097. (integer :tag "Macro arg Nr" :value 1))
  1098. (character :tag "Access Key ")
  1099. (string :tag "Key Prefix ")
  1100. (symbol :tag "Exclusion hook ")
  1101. (boolean :tag "Repeat Outside ")))
  1102. (option
  1103. :tag "Package:"
  1104. (choice :tag "Package"
  1105. :value index
  1106. ,@(mapcar
  1107. (lambda (x)
  1108. (list 'const :tag (concat (symbol-name (nth 0 x))
  1109. ": " (nth 1 x))
  1110. (nth 0 x)))
  1111. reftex-index-macros-builtin)))))
  1112. (defcustom reftex-index-default-macro '(?i "idx")
  1113. "The default index macro for \\[reftex-index-selection-or-word].
  1114. This is a list with (MACRO-KEY DEFAULT-TAG).
  1115. MACRO-KEY: Character identifying an index macro - see `reftex-index-macros'.
  1116. DEFAULT-TAG: This is the tag to be used if the macro requires a TAG argument.
  1117. When this is nil and a TAG is needed, RefTeX will ask for it.
  1118. When this is the empty string and the TAG argument of the index
  1119. macro is optional, the TAG argument will be omitted."
  1120. :group 'reftex-index-support
  1121. :type '(list
  1122. (character :tag "Character identifying default macro")
  1123. (choice :tag "Default index tag "
  1124. (const nil)
  1125. (string))))
  1126. (defcustom reftex-index-default-tag "idx"
  1127. "Default index tag.
  1128. When working with multiple indexes, RefTeX queries for an index tag when
  1129. creating index entries or displaying a specific index. This variable controls
  1130. the default offered for these queries. The default can be selected with RET
  1131. during selection or completion. Valid values of this variable are:
  1132. nil Do not provide a default index
  1133. \"tag\" The default index tag given as a string, e.g. \"idx\".
  1134. last The last used index tag will be offered as default."
  1135. :group 'reftex-index-support
  1136. :type '(choice
  1137. (const :tag "no default" nil)
  1138. (const :tag "last used " 'last)
  1139. (string :tag "index tag " "idx")))
  1140. (defcustom reftex-index-math-format "$%s$"
  1141. "Format of index entries when copied from inside math mode.
  1142. When `reftex-index-selection-or-word' is executed inside TeX math mode,
  1143. the index key copied from the buffer is processed with this format string
  1144. through the `format' function. This can be used to add the math delimiters
  1145. \(e.g. `$') to the string.
  1146. Requires the `texmathp.el' library which is part of AUCTeX."
  1147. :group 'reftex-index-support
  1148. :type 'string)
  1149. (defcustom reftex-index-phrase-file-extension ".rip"
  1150. "File extension for the index phrase file.
  1151. This extension will be added to the base name of the master file."
  1152. :group 'reftex-index-support
  1153. :type 'string)
  1154. (defcustom reftex-index-phrases-logical-and-regexp " *&& *"
  1155. "Regexp matching the `and' operator for index arguments in phrases file.
  1156. When several index arguments in a phrase line are separated by this
  1157. operator, each part will generate an index macro. So each match of
  1158. the search phrase will produce *several* different index entries.
  1159. Note: make sure this does no match things which are not separators.
  1160. This logical `and' has higher priority than the logical `or' specified in
  1161. `reftex-index-phrases-logical-or-regexp'."
  1162. :group 'reftex-index-support
  1163. :type 'regexp)
  1164. (defcustom reftex-index-phrases-logical-or-regexp " *|| *"
  1165. "Regexp matching the `or' operator for index arguments in phrases file.
  1166. When several index arguments in a phrase line are separated by this
  1167. operator, the user will be asked to select one of them at each match
  1168. of the search phrase. The first index arg will be the default - a
  1169. number key 1-9 must be pressed to switch to another.
  1170. Note: make sure this does no match things which are not separators.
  1171. The logical `and' specified in `reftex-index-phrases-logical-or-regexp'
  1172. has higher priority than this logical `or'."
  1173. :group 'reftex-index-support
  1174. :type 'regexp)
  1175. (defcustom reftex-index-phrases-search-whole-words t
  1176. "*Non-nil means phrases search will look for whole words, not subwords.
  1177. This works by requiring word boundaries at the beginning and end of
  1178. the search string. When the search phrase already has a non-word-char
  1179. at one of these points, no word boundary is required there."
  1180. :group 'reftex-index-support
  1181. :type 'boolean)
  1182. (defcustom reftex-index-phrases-case-fold-search t
  1183. "*Non-nil means, searching for index phrases will ignore case."
  1184. :group 'reftex-index-support
  1185. :type 'boolean)
  1186. (defcustom reftex-index-verify-function nil
  1187. "A function which is called at each match during global indexing.
  1188. If the function returns nil, the current match is skipped."
  1189. :group 'reftex-index-support
  1190. :type '(choice
  1191. (const :tag "No verification" nil)
  1192. (function)))
  1193. (defcustom reftex-index-phrases-skip-indexed-matches nil
  1194. "*Non-nil means, skip matches which appear to be indexed already.
  1195. When doing global indexing from the phrases buffer, searches for some
  1196. phrases may match at places where that phrase was already indexed. In
  1197. particular when indexing an already processed document again, this
  1198. will even be the norm. When this variable is non-nil, RefTeX checks if
  1199. the match is inside an index macro argument, or if an index macro is directly
  1200. before or after the phrase. If that is the case, that match will
  1201. be ignored."
  1202. :group 'reftex-index-support
  1203. :type 'boolean)
  1204. (defcustom reftex-index-phrases-wrap-long-lines nil
  1205. "*Non-nil means, when indexing from the phrases buffer, wrap lines.
  1206. Inserting indexing commands in a line makes the line longer - often
  1207. so long that it does not fit onto the screen. When this variable is
  1208. non-nil, newlines will be added as necessary before and/or after the
  1209. indexing command to keep lines short. However, the matched text
  1210. phrase and its index command will always end up on a single line."
  1211. :group 'reftex-index-support
  1212. :type 'boolean)
  1213. (defcustom reftex-index-phrases-sort-prefers-entry nil
  1214. "*Non-nil means when sorting phrase lines, the explicit index entry is used.
  1215. Phrase lines in the phrases buffer contain a search phrase, and
  1216. sorting is normally based on these. Some phrase lines also have
  1217. an explicit index argument specified. When this variable is non-nil,
  1218. the index argument will be used for sorting."
  1219. :group 'reftex-index-support
  1220. :type 'boolean)
  1221. (defcustom reftex-index-phrases-sort-in-blocks t
  1222. "*Non-nil means, empty and comment lines separate phrase buffer into blocks.
  1223. Sorting will then preserve blocks, so that lines are re-arranged only
  1224. within blocks."
  1225. :group 'reftex-index-support
  1226. :type 'boolean)
  1227. (defcustom reftex-index-section-letters "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  1228. "The letters which denote sections in the index.
  1229. Usually these are all capital letters. Don't use any downcase letters.
  1230. Order is not significant, the index will be sorted by whatever the sort
  1231. function thinks is correct.
  1232. In addition to these letters, RefTeX will create a group `!' which
  1233. contains all entries sorted below the lowest specified letter.
  1234. In the index buffer, pressing any of these capital letters or `!' will jump
  1235. to that section."
  1236. :group 'reftex-index-support
  1237. :type '(string :tag "Capital letters"))
  1238. (defcustom reftex-index-include-context nil
  1239. "*Non-nil means, display the index definition context in the index buffer.
  1240. This flag may also be toggled from the index buffer with the `c' key."
  1241. :group 'reftex-index-support
  1242. :type 'boolean)
  1243. (defcustom reftex-index-follow-mode nil
  1244. "*Non-nil means, point in *Index* buffer will cause other window to follow.
  1245. The other window will show the corresponding part of the document.
  1246. This flag can be toggled from within the *Index* buffer with the `f' key."
  1247. :group 'reftex-table-of-contents-browser
  1248. :type 'boolean)
  1249. ;; Viewing Cross References
  1250. (defgroup reftex-viewing-cross-references nil
  1251. "Displaying cross references and citations."
  1252. :group 'reftex)
  1253. (defcustom reftex-view-crossref-extra nil
  1254. "Macros which can be used for the display of cross references.
  1255. This is used when `reftex-view-crossref' is called with point in an
  1256. argument of a macro. Note that crossref viewing for citations,
  1257. references (both ways) and index entries is hard-coded. This variable
  1258. is only to configure additional structures for which crossreference
  1259. viewing can be useful. Each entry has the structure
  1260. \(MACRO-RE SEARCH-RE HIGHLIGHT).
  1261. MACRO-RE is matched against the macro. SEARCH-RE is the regexp used
  1262. to search for cross references. `%s' in this regexp is replaced with
  1263. with the macro argument at point. HIGHLIGHT is an integer indicating
  1264. which subgroup of the match should be highlighted."
  1265. :group 'reftex-viewing-cross-references
  1266. :type '(repeat (group (regexp :tag "Macro Regexp ")
  1267. (string :tag "Search Regexp ")
  1268. (integer :tag "Highlight Group"))))
  1269. (defcustom reftex-auto-view-crossref t
  1270. "*Non-nil means, initially turn automatic viewing of crossref info on.
  1271. Automatic viewing of crossref info normally uses the echo area.
  1272. Whenever point is idle for more than `reftex-idle-time' seconds on the
  1273. argument of a \\ref or \\cite macro, and no other message is being
  1274. displayed, the echo area will display information about that cross
  1275. reference. You can also set the variable to the symbol `window'. In
  1276. this case a small temporary window is used for the display.
  1277. This feature can be turned on and off from the menu
  1278. \(Ref->Options)."
  1279. :group 'reftex-viewing-cross-references
  1280. :type '(choice (const :tag "off" nil)
  1281. (const :tag "in Echo Area" t)
  1282. (const :tag "in Other Window" window)))
  1283. (defcustom reftex-idle-time 1.2
  1284. "*Time (secs) Emacs has to be idle before automatic crossref display is done.
  1285. Applies also to toc recentering."
  1286. :group 'reftex-viewing-cross-references
  1287. :type 'number)
  1288. (defcustom reftex-revisit-to-echo nil
  1289. "*Non-nil means, automatic citation display will revisit files if necessary.
  1290. When nil, citation display in echo area will only be active for cached
  1291. entries and for BibTeX database files with live associated buffers."
  1292. :group 'reftex-viewing-cross-references
  1293. :type 'boolean)
  1294. (defcustom reftex-cache-cite-echo t
  1295. "*Non-nil means, the information displayed in the echo area for cite macros
  1296. is cached and even saved along with the parsing information. The cache
  1297. survives document scans. In order to clear it, use M-x reftex-reset-mode."
  1298. :group 'reftex-viewing-cross-references
  1299. :type 'boolean)
  1300. (defcustom reftex-display-copied-context-hook nil
  1301. "Normal Hook which is run before context is displayed anywhere. Designed
  1302. for X-Symbol, but may have other uses as well."
  1303. :group 'reftex-viewing-cross-references
  1304. :group 'reftex-referencing-labels
  1305. :type 'hook)
  1306. ;; Finding Files --------------------------------------------------------
  1307. (defgroup reftex-finding-files nil
  1308. "Finding files on search paths."
  1309. :group 'reftex)
  1310. (defcustom reftex-texpath-environment-variables '("TEXINPUTS")
  1311. "*List of specifications how to retrieve the search path for TeX files.
  1312. Several entries are possible.
  1313. - If an element is the name of an environment variable, its content is used.
  1314. - If an element starts with an exclamation mark, it is used as a command
  1315. to retrieve the path. A typical command with the kpathsearch library would
  1316. be `!kpsewhich -show-path=.tex'.
  1317. - Otherwise the element itself is interpreted as a path.
  1318. Multiple directories can be separated by the system dependent `path-separator'.
  1319. Directories ending in `//' or `!!' will be expanded recursively.
  1320. See also `reftex-use-external-file-finders'."
  1321. :group 'reftex-finding-files
  1322. :set 'reftex-set-dirty
  1323. :type '(repeat (string :tag "Specification")))
  1324. (defcustom reftex-bibpath-environment-variables '("BIBINPUTS" "TEXBIB")
  1325. "*List of specifications how to retrieve search path for .bib database files.
  1326. Several entries are possible.
  1327. - If an element is the name of an environment variable, its content is used.
  1328. - If an element starts with an exclamation mark, it is used as a command
  1329. to retrieve the path. A typical command with the kpathsearch library would
  1330. be `!kpsewhich -show-path=.bib'.
  1331. - Otherwise the element itself is interpreted as a path.
  1332. Multiple directories can be separated by the system dependent `path-separator'.
  1333. Directories ending in `//' or `!!' will be expanded recursively.
  1334. See also `reftex-use-external-file-finders'."
  1335. :group 'reftex-citation-support
  1336. :group 'reftex-finding-files
  1337. :set 'reftex-set-dirty
  1338. :type '(repeat (string :tag "Specification")))
  1339. (defcustom reftex-file-extensions '(("tex" . (".tex" ".ltx"))
  1340. ("bib" . (".bib")))
  1341. "*Association list with file extensions for different file types.
  1342. This is a list of items, each item is like: (TYPE . (DEF-EXT OTHER-EXT ...))
  1343. TYPE: File type like \"bib\" or \"tex\".
  1344. DEF-EXT: The default extension for that file type, like \".tex\" or \".bib\".
  1345. OTHER-EXT: Any number of other valid extensions for this file type.
  1346. When a files is searched and it does not have any of the legal extensions,
  1347. we try the default extension first, and then the naked file name.
  1348. If you are using AUCTeX, you also need to add new extensions to
  1349. TeX-file-extensions."
  1350. :group 'reftex-finding-files
  1351. :type '(repeat (cons (string :tag "File type")
  1352. (repeat (string :tag "Extension")))))
  1353. (defcustom reftex-try-all-extensions nil
  1354. "Non-nil means, try all extensions listed in `reftex-file-extensions'.
  1355. When searching for a file, LaTeX uses only the default extension. However,
  1356. if you are working with a noweb system that produces the .tex files from
  1357. some other file, and you want RefTeX to scan the web file instead of the
  1358. tex file, you need to set this option. You also need to make the noweb
  1359. extension the default extension, i.e. the first in the list in
  1360. `reftex-file-extensions'.
  1361. Note that if you are using external file finders, this option has no effect."
  1362. :group 'reftex-finding-files
  1363. :type 'boolean)
  1364. (defcustom reftex-search-unrecursed-path-first t
  1365. "*Non-nil means, search all specified directories before trying recursion.
  1366. Thus, in a path \".//:/tex/\", search first \"./\", then \"/tex/\" and then
  1367. all subdirectories of \"./\". If this option is nil, the subdirectories of
  1368. \"./\" are searched before \"/tex/\". This is mainly for speed - most of the
  1369. time the recursive path is for the system files and not for the user files.
  1370. Set this to nil if the default makes RefTeX finding files with equal names
  1371. in wrong sequence."
  1372. :group 'reftex-finding-files
  1373. :type 'boolean)
  1374. (defcustom reftex-use-external-file-finders nil
  1375. "*Non-nil means, use external programs to find files.
  1376. Normally, RefTeX searches the paths given in the environment variables
  1377. TEXINPUTS and BIBINPUTS to find TeX files and BibTeX database files.
  1378. With this option turned on, it calls an external program specified in the
  1379. option `reftex-external-file-finders' instead. As a side effect,
  1380. the variables `reftex-texpath-environment-variables' and
  1381. `reftex-bibpath-environment-variables' will be ignored."
  1382. :group 'reftex-finding-files
  1383. :type 'boolean)
  1384. (defcustom reftex-external-file-finders '(("tex" . "kpsewhich -format=.tex %f")
  1385. ("bib" . "kpsewhich -format=.bib %f"))
  1386. "*Association list with external programs to call for finding files.
  1387. Each entry is a cons cell (TYPE . PROGRAM).
  1388. TYPE is either \"tex\" or \"bib\". PROGRAM is the external program to use with
  1389. any arguments. %f will be replaced by the name of the file to be found.
  1390. Note that these commands will be executed directly, not via a shell.
  1391. Only relevant when `reftex-use-external-file-finders' is non-nil."
  1392. :group 'reftex-finding-files
  1393. :type '(repeat (cons (string :tag "File type")
  1394. (string :tag "Program "))))
  1395. ;; Tuning the parser ----------------------------------------------------
  1396. (defgroup reftex-optimizations-for-large-documents nil
  1397. "Configuration of parser speed and memory usage."
  1398. :group 'reftex)
  1399. (defcustom reftex-keep-temporary-buffers 1
  1400. "*Non-nil means, keep buffers created for parsing and lookup.
  1401. RefTeX sometimes needs to visit files related to the current document.
  1402. We distinguish files visited for
  1403. PARSING: Parts of a multifile document loaded when (re)-parsing the document.
  1404. LOOKUP: BibTeX database files and TeX files loaded to find a reference,
  1405. to display label context, etc.
  1406. The created buffers can be kept for later use, or be thrown away immediately
  1407. after use, depending on the value of this variable:
  1408. nil Throw away as much as possible.
  1409. t Keep everything.
  1410. 1 Throw away buffers created for parsing, but keep the ones created
  1411. for lookup.
  1412. If a buffer is to be kept, the file is visited normally (which is potentially
  1413. slow but will happen only once).
  1414. If a buffer is to be thrown away, the initialization of the buffer depends
  1415. upon the variable `reftex-initialize-temporary-buffers'."
  1416. :group 'reftex-optimizations-for-large-documents
  1417. :type '(choice
  1418. (const :tag "Throw away everything" nil)
  1419. (const :tag "Keep everything" t)
  1420. (const :tag "Keep lookup buffers only" 1)))
  1421. (defcustom reftex-initialize-temporary-buffers nil
  1422. "*Non-nil means do initializations even when visiting file temporarily.
  1423. When nil, RefTeX may turn off find-file hooks and other stuff to briefly
  1424. visit a file.
  1425. When t, the full default initializations are done (find-file-hook etc.).
  1426. Instead of t or nil, this variable may also be a list of hook functions to
  1427. do a minimal initialization."
  1428. :group 'reftex-optimizations-for-large-documents
  1429. :type '(choice
  1430. (const :tag "Read files literally" nil)
  1431. (const :tag "Fully initialize buffers" t)
  1432. (repeat :tag "Hook functions" :value (nil)
  1433. (function-item))))
  1434. (defcustom reftex-no-include-regexps '("\\.pstex_t\\'")
  1435. "*List of regular expressions to exclude certain input files from parsing.
  1436. If the name of a file included via \\include or \\input is matched by any
  1437. of the regular expressions in this list, that file is not parsed by RefTeX."
  1438. :group 'reftex-optimizations-for-large-documents
  1439. :type '(repeat (regexp)))
  1440. (defcustom reftex-enable-partial-scans nil
  1441. "*Non-nil means, re-parse only 1 file when asked to re-parse.
  1442. Re-parsing is normally requested with a `C-u' prefix to many RefTeX commands,
  1443. or with the `r' key in menus. When this option is t in a multifile document,
  1444. we will only parse the current buffer, or the file associated with the label
  1445. or section heading near point in a menu. Requesting re-parsing of an entire
  1446. multifile document then requires a `C-u C-u' prefix or the capital `R' key
  1447. in menus."
  1448. :group 'reftex-optimizations-for-large-documents
  1449. :type 'boolean)
  1450. (defcustom reftex-allow-automatic-rescan t
  1451. "*Non-nil means, RefTeX may rescan the document when this seems necessary.
  1452. Currently this applies only to rescanning after label insertion, when
  1453. the new label cannot be inserted correctly into the internal label
  1454. list."
  1455. :group 'reftex-optimizations-for-large-documents
  1456. :type 'boolean)
  1457. (defcustom reftex-save-parse-info nil
  1458. "*Non-nil means, save information gathered with parsing in a file.
  1459. The file MASTER.rel in the same directory as MASTER.tex is used to save the
  1460. information. When this variable is t,
  1461. - accessing the parsing information for the first time in an editing session
  1462. will read that file (if available) instead of parsing the document.
  1463. - exiting Emacs or killing a buffer in reftex-mode will cause a new version
  1464. of the file to be written."
  1465. :group 'reftex-optimizations-for-large-documents
  1466. :type 'boolean)
  1467. (defcustom reftex-parse-file-extension ".rel"
  1468. "*File extension for the file in which parser information is stored.
  1469. This extension is added to the base name of the master file."
  1470. :group 'reftex-optimizations-for-large-documents
  1471. :type 'string)
  1472. (defcustom reftex-use-multiple-selection-buffers nil
  1473. "*Non-nil means use a separate selection buffer for each label type.
  1474. These buffers are kept from one selection to the next and need not to be
  1475. created for each use - so the menu generally comes up faster. The
  1476. selection buffers will be erased (and therefore updated) automatically
  1477. when new labels in its category are added. See the variable
  1478. `reftex-auto-update-selection-buffers'."
  1479. :group 'reftex-optimizations-for-large-documents
  1480. :group 'reftex-referencing-labels
  1481. :type 'boolean)
  1482. (defcustom reftex-auto-update-selection-buffers t
  1483. "*Non-nil means, selection buffers will be updated automatically.
  1484. When a new label is defined with `reftex-label', all selection buffers
  1485. associated with that label category are emptied, in order to force an
  1486. update upon next use. When nil, the buffers are left alone and have to be
  1487. updated by hand, with the `g' key from the label selection process.
  1488. The value of this variable will only have any effect when
  1489. `reftex-use-multiple-selection-buffers' is non-nil."
  1490. :group 'reftex-optimizations-for-large-documents
  1491. :group 'reftex-referencing-labels
  1492. :type 'boolean)
  1493. ;; Fontification and Faces ----------------------------------------------
  1494. (defgroup reftex-fontification-configurations nil
  1495. "Options concerning the faces used in RefTeX."
  1496. :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
  1497. :group 'reftex)
  1498. (defcustom reftex-use-fonts t
  1499. "*Non-nil means, use fonts in *toc* and selection buffers.
  1500. Font-lock must be loaded as well to actually get fontified display.
  1501. When changing this option, a rescan may be necessary to activate the change."
  1502. :group 'reftex-fontification-configurations
  1503. :type 'boolean)
  1504. (defcustom reftex-refontify-context 1
  1505. "*Non-nil means, re-fontify the context in the label menu with font-lock.
  1506. This slightly slows down the creation of the label menu. It is only necessary
  1507. when you definitely want the context fontified.
  1508. This option may have 3 different values:
  1509. nil Never refontify.
  1510. t Always refontify.
  1511. 1 Refontify when absolutely necessary, e.g. when old versions of X-Symbol.
  1512. The option is ignored when `reftex-use-fonts' is nil."
  1513. :group 'reftex-fontification-configurations
  1514. :group 'reftex-referencing-labels
  1515. :type '(choice
  1516. (const :tag "Never" nil)
  1517. (const :tag "Always" t)
  1518. (const :tag "When necessary" 1)))
  1519. (defcustom reftex-highlight-selection 'cursor
  1520. "*Non-nil mean, highlight selected text in selection and *toc* buffers.
  1521. Normally, the text near the cursor is the selected text, and it is
  1522. highlighted. This is the entry most keys in the selection and *toc*
  1523. buffers act on. However, if you mainly use the mouse to select an
  1524. item, you may find it nice to have mouse-triggered highlighting
  1525. instead or as well. The variable may have one of these values:
  1526. nil No highlighting.
  1527. cursor Highlighting is cursor driven.
  1528. mouse Highlighting is mouse driven.
  1529. both Both cursor and mouse trigger highlighting.
  1530. Changing this variable requires to rebuild the selection and *toc* buffers
  1531. to become effective (keys `g' or `r')."
  1532. :group 'reftex-fontification-configurations
  1533. :type '(choice
  1534. (const :tag "Never" nil)
  1535. (const :tag "Cursor driven" cursor)
  1536. (const :tag "Mouse driven" mouse)
  1537. (const :tag "Mouse and Cursor driven." both)))
  1538. (defcustom reftex-cursor-selected-face 'highlight
  1539. "Face name to highlight cursor selected item in toc and selection buffers.
  1540. See also the variable `reftex-highlight-selection'."
  1541. :group 'reftex-fontification-configurations
  1542. :type 'symbol)
  1543. (defcustom reftex-mouse-selected-face 'secondary-selection
  1544. "Face name to highlight mouse selected item in toc and selection buffers.
  1545. See also the variable `reftex-highlight-selection'."
  1546. :group 'reftex-fontification-configurations
  1547. :type 'symbol)
  1548. (defcustom reftex-file-boundary-face 'font-lock-comment-face
  1549. "Face name for file boundaries in selection buffer."
  1550. :group 'reftex-fontification-configurations
  1551. :type 'symbol)
  1552. (defcustom reftex-label-face 'font-lock-constant-face
  1553. "Face name for labels in selection buffer."
  1554. :group 'reftex-fontification-configurations
  1555. :type 'symbol)
  1556. (defcustom reftex-section-heading-face 'font-lock-function-name-face
  1557. "Face name for section headings in toc and selection buffers."
  1558. :group 'reftex-fontification-configurations
  1559. :type 'symbol)
  1560. (defcustom reftex-toc-header-face 'font-lock-comment-face
  1561. "Face name for the header of a toc buffer."
  1562. :group 'reftex-fontification-configurations
  1563. :type 'symbol)
  1564. (defcustom reftex-bib-author-face 'font-lock-keyword-face
  1565. "Face name for author names in bib selection buffer."
  1566. :group 'reftex-fontification-configurations
  1567. :type 'symbol)
  1568. (defcustom reftex-bib-year-face 'font-lock-comment-face
  1569. "Face name for year in bib selection buffer."
  1570. :group 'reftex-fontification-configurations
  1571. :type 'symbol)
  1572. (defcustom reftex-bib-title-face 'font-lock-function-name-face
  1573. "Face name for article title in bib selection buffer."
  1574. :group 'reftex-fontification-configurations
  1575. :type 'symbol)
  1576. (defcustom reftex-bib-extra-face 'font-lock-comment-face
  1577. "Face name for bibliographic information in bib selection buffer."
  1578. :group 'reftex-fontification-configurations
  1579. :type 'symbol)
  1580. (defcustom reftex-select-mark-face 'bold
  1581. "Face name for marked entries in the selection buffers."
  1582. :group 'reftex-fontification-configurations
  1583. :type 'symbol)
  1584. (defcustom reftex-index-header-face 'font-lock-comment-face
  1585. "Face name for the header of an index buffer."
  1586. :group 'reftex-fontification-configurations
  1587. :type 'symbol)
  1588. (defcustom reftex-index-section-face 'font-lock-function-name-face
  1589. "Face name for the start of a new letter section in the index."
  1590. :group 'reftex-fontification-configurations
  1591. :type 'symbol)
  1592. (defcustom reftex-index-tag-face 'font-lock-keyword-face
  1593. "Face name for index names (for multiple indices)."
  1594. :group 'reftex-fontification-configurations
  1595. :type 'symbol)
  1596. (defcustom reftex-index-face 'font-lock-constant-face
  1597. "Face name for index entries."
  1598. :group 'reftex-fontification-configurations
  1599. :type 'symbol)
  1600. (defcustom reftex-pre-refontification-functions nil
  1601. "X-Symbol specific hook.
  1602. Functions get two arguments, the buffer from where the command started and a
  1603. symbol indicating in what context the hook is called."
  1604. :group 'reftex-fontification-configurations
  1605. :type 'hook)
  1606. ;; Miscellaneous configurations -----------------------------------------
  1607. (defgroup reftex-miscellaneous-configurations nil
  1608. "Collection of further configurations."
  1609. :group 'reftex)
  1610. (defcustom reftex-extra-bindings nil
  1611. "Non-nil means, make additional key bindings on startup.
  1612. These extra bindings are located in the
  1613. `reftex-extra-bindings-map' map, bound to
  1614. `reftex-extra-bindings-prefix'."
  1615. :group 'reftex-miscellaneous-configurations
  1616. :type 'boolean)
  1617. ;; below, default is C-c C-y because it is free in LaTeX mode.
  1618. (defcustom reftex-extra-bindings-prefix "\C-c\C-y"
  1619. "When `reftex-extra-bindings' is set to non-nil, use extra
  1620. bindings with this prefix bound to `reftex-extra-bindings-map'."
  1621. :group 'reftex-miscellaneous-configurations
  1622. :type 'boolean)
  1623. (defcustom reftex-plug-into-AUCTeX nil
  1624. "*Plug-in flags for AUCTeX interface.
  1625. This variable is a list of 4 boolean flags. When a flag is non-nil,
  1626. RefTeX will
  1627. - supply labels in new sections and environments (flag 1)
  1628. - supply arguments for macros like `\\label'. (flag 2)
  1629. - supply arguments for macros like `\\ref'. (flag 3)
  1630. - supply arguments for macros like `\\cite'. (flag 4)
  1631. - supply arguments for macros like `\\index'. (flag 5)
  1632. You may also set the variable itself to t or nil in order to turn all
  1633. plug-ins on or off, respectively.
  1634. \\<LaTeX-mode-map>Supplying labels in new sections and environments applies when creating
  1635. sections with \\[LaTeX-section] and environments with \\[LaTeX-environment].
  1636. Supplying macro arguments applies when you insert such a macro interactively
  1637. with \\[TeX-insert-macro].
  1638. See the AUCTeX documentation for more information.
  1639. RefTeX uses `fset' to take over the function calls. Changing the variable
  1640. may require a restart of Emacs in order to become effective."
  1641. :group 'reftex-miscellaneous-configurations
  1642. :group 'LaTeX
  1643. :type '(choice
  1644. (const :tag "No plug-ins" nil)
  1645. (const :tag "All possible plug-ins" t)
  1646. (list
  1647. :tag "Individual choice"
  1648. :value (t t t t t)
  1649. (boolean :tag "supply label in new sections and environments")
  1650. (boolean :tag "supply argument for macros like `\\label' ")
  1651. (boolean :tag "supply argument for macros like `\\ref' ")
  1652. (boolean :tag "supply argument for macros like `\\cite' ")
  1653. (boolean :tag "supply argument for macros like `\\index' ")
  1654. )))
  1655. (defcustom reftex-allow-detached-macro-args nil
  1656. "*Non-nil means, allow arguments of macros to be detached by whitespace.
  1657. When this is t, `aaa' will be considered as argument of \\bb in the following
  1658. construct: \\bbb [xxx] {aaa}."
  1659. :group 'reftex-miscellaneous-configurations
  1660. :type 'boolean)
  1661. (defcustom reftex-load-hook nil
  1662. "Hook which is being run when loading reftex.el."
  1663. :group 'reftex-miscellaneous-configurations
  1664. :type 'hook)
  1665. (defcustom reftex-mode-hook nil
  1666. "Hook which is being run when turning on RefTeX mode."
  1667. :group 'reftex-miscellaneous-configurations
  1668. :type 'hook)
  1669. (provide 'reftex-vars)
  1670. ;;; reftex-vars.el ends here