Mercurial > emacs
annotate lispref/two.el @ 78003:1c1d498b5458
update two-volume material for printing
author | Karl Berry <karl@gnu.org> |
---|---|
date | Wed, 13 Jun 2007 00:44:05 +0000 |
parents | 9f4849fee703 |
children | 63591152f3cb 52a7f3f50b89 |
rev | line source |
---|---|
75767
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
1 ;; Auxiliary functions for preparing a two volume manual. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
2 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
5 |
41193 | 6 ;; --rjc 30mar92 |
7 | |
75767
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
8 ;; This file is free software; you can redistribute it and/or modify |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
9 ;; it under the terms of the GNU General Public License as published by |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
10 ;; the Free Software Foundation; either version 2, or (at your option) |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
11 ;; any later version. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
12 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
13 ;; This file is distributed in the hope that it will be useful, |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
16 ;; GNU General Public License for more details. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
17 |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
18 ;; You should have received a copy of the GNU General Public License |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
19 ;; along with this file; see the file COPYING. If not, write to |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
20 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
21 ;; Boston, MA 02110-1301, USA. |
9f4849fee703
Add copyright and license notice.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
22 |
41193 | 23 (defun volume-aux-markup (arg) |
24 "Append `vol. NUMBER' to page number. | |
25 Apply to aux file that you save. | |
26 Then insert marked file into other volume's .aux file." | |
27 (interactive "sType volume number, 1 or 2: " ) | |
28 (goto-char (point-min)) | |
29 (while (search-forward "-pg" nil t) | |
30 (end-of-line 1) | |
31 (delete-backward-char 1 nil) | |
32 (insert ", vol.'tie" arg "}"))) | |
33 | |
34 (defun volume-index-markup (arg) | |
35 "Prepend `NUMBER:' to page number. Use Roman Numeral. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
36 Apply only to unsorted index file, |
41193 | 37 Then insert marked file into other volume's unsorted index file. |
38 Then run texindex on that file and save." | |
39 (interactive | |
40 "sType volume number, roman number I or II: " ) | |
41 (goto-char (point-min)) | |
42 (while (search-forward "\\entry" nil t) | |
43 (search-forward "}{" (save-excursion (end-of-line) (point)) nil) | |
44 (insert arg ":"))) | |
45 | |
46 (defun volume-numbers-toc-markup (arg) | |
47 (interactive | |
48 "sType volume number, roman number I or II: " ) | |
49 (goto-char (point-min)) | |
50 (while (search-forward "chapentry" nil t) | |
51 (end-of-line) | |
52 (search-backward "{" nil t) | |
53 (forward-char 1) | |
54 (insert arg ":"))) | |
55 | |
56 (defun volume-header-toc-markup () | |
57 "Insert Volume I and Volume II text into .toc file. | |
58 NOTE: this auxilary function is file specific. | |
59 This is for the *Elisp Ref Manual*" | |
60 (interactive) | |
61 (goto-char (point-min)) | |
62 (insert "\\unnumbchapentry {Volume 1}{}\n\\unnumbchapentry {}{}\n") | |
63 (search-forward "\\unnumbchapentry {Index}") | |
64 (forward-line 1) | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41193
diff
changeset
|
65 (insert |
41193 | 66 "\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {}{}\n\\unnumbchapentry {Volume 2}{}\n\\unnumbchapentry {}{}\n")) |
67 | |
68 | |
69 ;;; In batch mode, you cannot call functions with args; hence this kludge: | |
70 | |
71 (defun volume-aux-markup-1 () (volume-aux-markup "1")) | |
72 (defun volume-aux-markup-2 () (volume-aux-markup "2")) | |
73 | |
74 (defun volume-index-markup-I () (volume-index-markup "I")) | |
75 (defun volume-index-markup-II () (volume-index-markup "II")) | |
76 | |
77 (defun volume-numbers-toc-markup-I () (volume-numbers-toc-markup "I")) | |
78 (defun volume-numbers-toc-markup-II () (volume-numbers-toc-markup "II")) | |
52401 | 79 |
80 ;;; arch-tag: 848955fe-e9cf-45e7-a2f1-570ef156d6a5 |