Changeset 4079 for trunk/lispintro/emacs-lisp-intro.texi
- Timestamp:
- 05/13/06 11:31:18 (3 years ago)
- Files:
-
- trunk/lispintro/emacs-lisp-intro.texi (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lispintro/emacs-lisp-intro.texi
r4037 r4079 17101 17101 Convert @kbd{@key{CTL}-h} into @key{DEL} and @key{DEL} 17102 17102 into @kbd{@key{CTL}-h}.@* 17103 (Some older skeyboards needed this, although I have not seen the17103 (Some older keyboards needed this, although I have not seen the 17104 17104 problem recently.) 17105 17105 … … 19490 19490 @cindex Horizontal axis printing 19491 19491 19492 X axis labels are much like Y axis labels, except that the tic s are on a19492 X axis labels are much like Y axis labels, except that the ticks are on a 19493 19493 line above the numbers. Labels should look like this: 19494 19494 … … 19502 19502 The first tic is under the first column of the graph and is preceded by 19503 19503 several blank spaces. These spaces provide room in rows above for the Y 19504 axis labels. The second, third, fourth, and subsequent tic s are all19504 axis labels. The second, third, fourth, and subsequent ticks are all 19505 19505 spaced equally, according to the value of @code{X-axis-label-spacing}. 19506 19506 … … 19630 19630 19631 19631 We also need to determine the length of the horizontal axis, which is 19632 the length of the numbers list, and the number of tic s in the horizontal19632 the length of the numbers list, and the number of ticks in the horizontal 19633 19633 axis: 19634 19634 … … 19647 19647 19648 19648 @group 19649 ;; number-of-X-tic s19649 ;; number-of-X-ticks 19650 19650 (if (zerop (% (X-length tic-width))) 19651 19651 (/ (X-length tic-width)) … … 19662 19662 (defun print-X-axis-tic-line 19663 19663 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) 19664 "Print tic s for X axis."19664 "Print ticks for X axis." 19665 19665 (insert X-axis-leading-spaces) 19666 19666 (insert X-axis-tic-symbol) ; @r{Under first column.} … … 19677 19677 @end group 19678 19678 @group 19679 ;; @r{Insert remaining tic s.}19679 ;; @r{Insert remaining ticks.} 19680 19680 (while (> number-of-X-tics 1) 19681 19681 (insert X-axis-tic-element) … … 20906 20906 (defun print-X-axis-tic-line 20907 20907 (number-of-X-tics X-axis-leading-spaces X-axis-tic-element) 20908 "Print tic s for X axis."20908 "Print ticks for X axis." 20909 20909 (insert X-axis-leading-spaces) 20910 20910 (insert X-axis-tic-symbol) ; @r{Under first column.} … … 20921 20921 @end group 20922 20922 @group 20923 ;; @r{Insert remaining tic s.}20923 ;; @r{Insert remaining ticks.} 20924 20924 (while (> number-of-X-tics 1) 20925 20925 (insert X-axis-tic-element)
