Reduce version number duplication in etc/refcards
* etc/refcards/emacsver.tex: New file. * etc/refcards/calccard.tex, etc/refcards/cs-dired-ref.tex: * etc/refcards/cs-refcard.tex, etc/refcards/cs-survival.tex: * etc/refcards/de-refcard.tex, etc/refcards/dired-ref.tex: * refcards/emacsver.tex, etc/refcards/fr-dired-ref.tex: * etc/refcards/fr-refcard.tex, etc/refcards/fr-survival.tex: * etc/refcards/orgcard.tex, etc/refcards/pl-refcard.tex: * etc/refcards/pt-br-refcard.tex, etc/refcards/refcard.tex: * etc/refcards/sk-dired-ref.tex, etc/refcards/sk-refcard.tex: * etc/refcards/sk-survival.tex, etc/refcards/survival.tex: * etc/refcards/vipcard.tex, etc/refcards/viperCard.tex: Include emacsver.tex. * refcards/calccard.tex (\emacsversionnumber): Rename to \versionemacs, same as all the other refcards. * etc/refcards/Makefile (ENVADD): New variable. (sk-dired-ref.pdf, sk-survival.pdf, pl-refcard.pdf) (%.pdf, %,dvi, sk-dired-ref.dvi, sk-survival.dvi, pl-refcard.dvi): Depend on emacsver.tex. Add "." to TEXINPUTS for TeX commands. * admin/admin.el (set-version): Set major version in etc/refcards/ru-refcard.tex and etc/refcards/emacsver.tex. (set-copyright): In etc/refcards, only change ru-refcard.tex and emacsver.tex. * admin.el (cusver-scan, cusver-check): Bind local variables. * .bzrignore: Add etc/refcards TeX intermediate files.
This commit is contained in:
parent
865fe16fd2
commit
dcf8834bac
24 changed files with 83 additions and 63 deletions
|
|
@ -1,5 +1,12 @@
|
||||||
2012-09-17 Glenn Morris <rgm@gnu.org>
|
2012-09-17 Glenn Morris <rgm@gnu.org>
|
||||||
|
|
||||||
|
* admin.el (cusver-scan, cusver-check): Bind local variables.
|
||||||
|
|
||||||
|
* admin.el (set-version): Set major version in
|
||||||
|
etc/refcards/ru-refcard.tex and etc/refcards/emacsver.tex.
|
||||||
|
(set-copyright): In etc/refcards, only change ru-refcard.tex
|
||||||
|
and emacsver.tex.
|
||||||
|
|
||||||
* admin.el (set-copyright): No more need to set copyrights for
|
* admin.el (set-copyright): No more need to set copyrights for
|
||||||
nextstep, or .c files. Add configure.ac and config.nt.
|
nextstep, or .c files. Add configure.ac and config.nt.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,16 @@ Root must be the root of an Emacs source tree."
|
||||||
(set-version-in-file root "nt/emacsclient.rc" comma-space-version
|
(set-version-in-file root "nt/emacsclient.rc" comma-space-version
|
||||||
(rx (and "\"ProductVersion\"" (0+ space) ?,
|
(rx (and "\"ProductVersion\"" (0+ space) ?,
|
||||||
(0+ space) ?\" (submatch (1+ (in "0-9, ")))
|
(0+ space) ?\" (submatch (1+ (in "0-9, ")))
|
||||||
"\\0\"")))))
|
"\\0\"")))
|
||||||
|
(when (string-match "\\([0-9]\\{2,\\}\\)" version)
|
||||||
|
(setq version (match-string 1 version))
|
||||||
|
(set-version-in-file root "etc/refcards/ru-refcard.tex" version
|
||||||
|
"\\\\newcommand{\\\\versionemacs}\\[0\\]\
|
||||||
|
{\\([0-9]\\{2,\\}\\)}.+%.+version of Emacs")
|
||||||
|
(set-version-in-file root "etc/refcards/emacsver.tex" version
|
||||||
|
"\\\\def\\\\versionemacs\
|
||||||
|
{\\([0-9]\\{2,\\}\\)}.+%.+version of Emacs"))))
|
||||||
|
|
||||||
|
|
||||||
;; Note this makes some assumptions about form of short copyright.
|
;; Note this makes some assumptions about form of short copyright.
|
||||||
(defun set-copyright (root copyright)
|
(defun set-copyright (root copyright)
|
||||||
|
|
@ -150,19 +159,14 @@ Root must be the root of an Emacs source tree."
|
||||||
(set-version-in-file root "lib-src/rcs2log" copyright
|
(set-version-in-file root "lib-src/rcs2log" copyright
|
||||||
(rx (and "Copyright" (0+ space) ?= (0+ space)
|
(rx (and "Copyright" (0+ space) ?= (0+ space)
|
||||||
?\' (submatch (1+ nonl)))))
|
?\' (submatch (1+ nonl)))))
|
||||||
;; This one is a nuisance, as it needs to be split over two lines.
|
|
||||||
(string-match "\\(.*[0-9]\\{4\\} *\\)\\(.*\\)" copyright)
|
|
||||||
(when (string-match "\\([0-9]\\{4\\}\\)" copyright)
|
(when (string-match "\\([0-9]\\{4\\}\\)" copyright)
|
||||||
(setq copyright (match-string 1 copyright))
|
(setq copyright (match-string 1 copyright))
|
||||||
(dolist (file (directory-files (expand-file-name "etc/refcards" root)
|
(set-version-in-file root "etc/refcards/ru-refcard.tex" copyright
|
||||||
t "\\.tex\\'"))
|
"\\\\newcommand{\\\\cyear}\\[0\\]\
|
||||||
(unless (string-match "gnus-refcard\\.tex" file)
|
{\\([0-9]\\{4\\}\\)}.+%.+copyright year")
|
||||||
(set-version-in-file
|
(set-version-in-file root "etc/refcards/emacsver.tex" copyright
|
||||||
root file copyright
|
"\\\\def\\\\year\
|
||||||
(concat (if (string-match "ru-refcard\\.tex" file)
|
{\\([0-9]\\{4\\}\\)}.+%.+copyright year")))
|
||||||
"\\\\newcommand{\\\\cyear}\\[0\\]{"
|
|
||||||
"\\\\def\\\\year{")
|
|
||||||
"\\([0-9]\\{4\\}\\)}.+%.+copyright year"))))))
|
|
||||||
|
|
||||||
;;; Various bits of magic for generating the web manuals
|
;;; Various bits of magic for generating the web manuals
|
||||||
|
|
||||||
|
|
@ -443,7 +447,7 @@ If optional argument OLD is non-nil, also scan for defvars."
|
||||||
(let ((m (format "Scanning %s..." file))
|
(let ((m (format "Scanning %s..." file))
|
||||||
(re (format "^[ \t]*\\((def%s\\)[ \t\n]"
|
(re (format "^[ \t]*\\((def%s\\)[ \t\n]"
|
||||||
(if old "\\(?:custom\\|var\\)" "custom")))
|
(if old "\\(?:custom\\|var\\)" "custom")))
|
||||||
alist var ver)
|
alist var ver form)
|
||||||
(message "%s" m)
|
(message "%s" m)
|
||||||
(with-temp-buffer
|
(with-temp-buffer
|
||||||
(insert-file-contents file)
|
(insert-file-contents file)
|
||||||
|
|
@ -502,7 +506,7 @@ changes (in a non-trivial way). This function does not check for that."
|
||||||
(mapcar
|
(mapcar
|
||||||
(lambda (file)
|
(lambda (file)
|
||||||
(cons file (cusver-scan file))) newfiles)))
|
(cons file (cusver-scan file))) newfiles)))
|
||||||
oldcus result thisfile)
|
oldcus result thisfile file)
|
||||||
(message "Reading old defcustoms...")
|
(message "Reading old defcustoms...")
|
||||||
(dolist (file oldfiles)
|
(dolist (file oldfiles)
|
||||||
(setq oldcus (append oldcus (cusver-scan file t))))
|
(setq oldcus (append oldcus (cusver-scan file t))))
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,23 @@
|
||||||
|
2012-09-17 Glenn Morris <rgm@gnu.org>
|
||||||
|
|
||||||
|
* refcards/emacsver.tex: New file.
|
||||||
|
* refcards/calccard.tex, refcards/cs-dired-ref.tex:
|
||||||
|
* refcards/cs-refcard.tex, refcards/cs-survival.tex:
|
||||||
|
* refcards/de-refcard.tex, refcards/dired-ref.tex:
|
||||||
|
* refcards/emacsver.tex, refcards/fr-dired-ref.tex:
|
||||||
|
* refcards/fr-refcard.tex, refcards/fr-survival.tex:
|
||||||
|
* refcards/orgcard.tex, refcards/pl-refcard.tex:
|
||||||
|
* refcards/pt-br-refcard.tex, refcards/refcard.tex:
|
||||||
|
* refcards/sk-dired-ref.tex, refcards/sk-refcard.tex:
|
||||||
|
* refcards/sk-survival.tex, refcards/survival.tex:
|
||||||
|
* refcards/vipcard.tex, refcards/viperCard.tex: Include emacsver.tex.
|
||||||
|
* refcards/calccard.tex (\emacsversionnumber):
|
||||||
|
Rename to \versionemacs, same as all the other refcards.
|
||||||
|
* refcards/Makefile (ENVADD): New variable.
|
||||||
|
(sk-dired-ref.pdf, sk-survival.pdf, pl-refcard.pdf)
|
||||||
|
(%.pdf, %,dvi, sk-dired-ref.dvi, sk-survival.dvi, pl-refcard.dvi):
|
||||||
|
Depend on emacsver.tex. Add "." to TEXINPUTS for TeX commands.
|
||||||
|
|
||||||
2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
Remove configure's --without-sync-input option (Bug#12450).
|
Remove configure's --without-sync-input option (Bug#12450).
|
||||||
|
|
|
||||||
|
|
@ -47,26 +47,27 @@ VIPER_CARDS_PDF = vipcard.pdf viperCard.pdf
|
||||||
viper-cards_pdf: ${VIPER_CARDS_PDF}
|
viper-cards_pdf: ${VIPER_CARDS_PDF}
|
||||||
viper-cards_ps: ${VIPER_CARDS_PDF:.pdf=.ps}
|
viper-cards_ps: ${VIPER_CARDS_PDF:.pdf=.ps}
|
||||||
|
|
||||||
|
ENVADD = TEXINPUTS=".:"
|
||||||
|
|
||||||
## PDF files.
|
## PDF files.
|
||||||
|
|
||||||
## The page layouts (a4/letter) are written directly in the .tex files.
|
## The page layouts (a4/letter) are written directly in the .tex files.
|
||||||
|
|
||||||
cs-refcard.pdf cs-dired-ref.pdf cs-survival.pdf sk-refcard.pdf \
|
cs-refcard.pdf cs-dired-ref.pdf cs-survival.pdf sk-refcard.pdf \
|
||||||
sk-dired-ref.pdf sk-survival.pdf: %.pdf: %.tex
|
sk-dired-ref.pdf sk-survival.pdf: %.pdf: %.tex emacsver.tex
|
||||||
if pdfcsplain --version > /dev/null 2> /dev/null; then \
|
if pdfcsplain --version > /dev/null 2> /dev/null; then \
|
||||||
pdfcsplain $<; \
|
${ENVADD} pdfcsplain $<; \
|
||||||
else \
|
else \
|
||||||
csplain "\pdfoutput=1\input $<"; \
|
${ENVADD} csplain "\pdfoutput=1\input $<"; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Some versions of pdfmex seem to create dvi by default, hence output-format.
|
## Some versions of pdfmex seem to create dvi by default, hence output-format.
|
||||||
pl-refcard.pdf: %.pdf: %.tex
|
pl-refcard.pdf: %.pdf: %.tex emacsver.tex
|
||||||
if ! kpsewhich -format=fmt mex > /dev/null && \
|
if ! kpsewhich -format=fmt mex > /dev/null && \
|
||||||
! pdfmex --version > /dev/null 2> /dev/null; then \
|
! pdfmex --version > /dev/null 2> /dev/null; then \
|
||||||
echo "No mex format found."; false; \
|
echo "No mex format found."; false; \
|
||||||
fi
|
fi
|
||||||
pdftex -output-format=pdf $<
|
${ENVADD} pdftex -output-format=pdf $<
|
||||||
|
|
||||||
ru-refcard.pdf: %.pdf: %.tex
|
ru-refcard.pdf: %.pdf: %.tex
|
||||||
pdflatex $<
|
pdflatex $<
|
||||||
|
|
@ -81,21 +82,21 @@ gnus-booklet.pdf: gnus-refcard.tex gnus-logo.pdf
|
||||||
pdflatex -jobname=gnus-booklet '\def\booklettrue{}\def\letterpapertrue{}\input{gnus-refcard}'
|
pdflatex -jobname=gnus-booklet '\def\booklettrue{}\def\letterpapertrue{}\input{gnus-refcard}'
|
||||||
|
|
||||||
## Everything not explicitly listed above.
|
## Everything not explicitly listed above.
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex emacsver.tex
|
||||||
pdftex $<
|
${ENVADD} pdftex $<
|
||||||
|
|
||||||
|
|
||||||
## dvi files.
|
## dvi files.
|
||||||
|
|
||||||
cs-refcard.dvi cs-dired-ref.dvi cs-survival.dvi sk-refcard.dvi \
|
cs-refcard.dvi cs-dired-ref.dvi cs-survival.dvi sk-refcard.dvi \
|
||||||
sk-dired-ref.dvi sk-survival.dvi: %.dvi: %.tex
|
sk-dired-ref.dvi sk-survival.dvi: %.dvi: %.tex emacsver.tex
|
||||||
csplain $<
|
${ENVADD} csplain $<
|
||||||
|
|
||||||
pl-refcard.dvi: %.dvi: %.tex
|
pl-refcard.dvi: %.dvi: %.tex emacsver.tex
|
||||||
if ! kpsewhich -format=fmt mex > /dev/null; then \
|
if ! kpsewhich -format=fmt mex > /dev/null; then \
|
||||||
echo "No mex format found."; false; \
|
echo "No mex format found."; false; \
|
||||||
fi
|
fi
|
||||||
tex $<
|
${ENVADD} tex $<
|
||||||
|
|
||||||
ru-refcard.dvi gnus-refcard.dvi: %.dvi: %.tex
|
ru-refcard.dvi gnus-refcard.dvi: %.dvi: %.tex
|
||||||
latex $<
|
latex $<
|
||||||
|
|
@ -105,8 +106,8 @@ gnus-booklet.dvi: gnus-refcard.tex
|
||||||
mv gnus-refcard.dvi $@
|
mv gnus-refcard.dvi $@
|
||||||
|
|
||||||
## Everything not explicitly listed above.
|
## Everything not explicitly listed above.
|
||||||
%.dvi: %.tex
|
%.dvi: %.tex emacsver.tex
|
||||||
tex $<
|
${ENVADD} tex $<
|
||||||
|
|
||||||
|
|
||||||
## PostScript files.
|
## PostScript files.
|
||||||
|
|
|
||||||
|
|
@ -63,8 +63,7 @@
|
||||||
% UUCP: mit-erl!gildea
|
% UUCP: mit-erl!gildea
|
||||||
% Internet: gildea@stop.mail-abuse.org
|
% Internet: gildea@stop.mail-abuse.org
|
||||||
|
|
||||||
\def\emacsversionnumber{24}
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
\def\shortcopyrightnotice{\vskip 1ex plus 2 fill
|
\def\shortcopyrightnotice{\vskip 1ex plus 2 fill
|
||||||
\centerline{\small \copyright\ \year\ Free Software Foundation, Inc.
|
\centerline{\small \copyright\ \year\ Free Software Foundation, Inc.
|
||||||
|
|
@ -276,7 +275,7 @@ are preserved on all copies.
|
||||||
|
|
||||||
\title{GNU Calc Reference Card}
|
\title{GNU Calc Reference Card}
|
||||||
|
|
||||||
\centerline{(for GNU Emacs version \emacsversionnumber)}
|
\centerline{(for GNU Emacs version \versionemacs)}
|
||||||
|
|
||||||
\section{Starting and Stopping}
|
\section{Starting and Stopping}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,8 +41,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,8 +59,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,8 +54,7 @@
|
||||||
% Czech hyphenation rules applied
|
% Czech hyphenation rules applied
|
||||||
\chyph
|
\chyph
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
\def\copyrightnotice{\penalty-1\vfill
|
\def\copyrightnotice{\penalty-1\vfill
|
||||||
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
||||||
|
|
|
||||||
|
|
@ -60,8 +60,7 @@
|
||||||
\input german.sty
|
\input german.sty
|
||||||
\mdqoff % deactivates the "-char
|
\mdqoff % deactivates the "-char
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed below this line.
|
% Nothing else needs to be changed below this line.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(1)
|
\pdflayout=(1)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
4
etc/refcards/emacsver.tex
Normal file
4
etc/refcards/emacsver.tex
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
%% This file is not generated by configure, because then the provided
|
||||||
|
%% pdf files would always appear out-of-date.
|
||||||
|
\def\versionemacs{24} % major version of emacs
|
||||||
|
\def\year{2012} % latest copyright year
|
||||||
|
|
@ -35,8 +35,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,8 +56,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0l)
|
\pdflayout=(0l)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed below this line.
|
% Nothing else needs to be changed below this line.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,8 +49,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
\def\copyrightnotice{\penalty-1\vfill
|
\def\copyrightnotice{\penalty-1\vfill
|
||||||
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
% Reference Card for Org Mode
|
% Reference Card for Org Mode
|
||||||
\def\orgversionnumber{7.8.11}
|
\def\orgversionnumber{7.8.11}
|
||||||
\def\versionyear{2012} % latest update
|
\def\versionyear{2012} % latest update
|
||||||
\def\year{2012} % latest copyright year
|
\input emacsver.tex
|
||||||
|
|
||||||
%**start of header
|
%**start of header
|
||||||
\newcount\columnsperpage
|
\newcount\columnsperpage
|
||||||
|
|
|
||||||
|
|
@ -69,8 +69,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -62,8 +62,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0l)
|
\pdflayout=(0l)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed below this line.
|
% Nothing else needs to be changed below this line.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,8 +63,7 @@
|
||||||
|
|
||||||
% Nothing else needs to be changed below this line.
|
% Nothing else needs to be changed below this line.
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % copyright year
|
|
||||||
|
|
||||||
\def\shortcopyrightnotice{\vskip 1ex plus 2 fill
|
\def\shortcopyrightnotice{\vskip 1ex plus 2 fill
|
||||||
\centerline{\small \copyright\ \year\ Free Software Foundation, Inc.
|
\centerline{\small \copyright\ \year\ Free Software Foundation, Inc.
|
||||||
|
|
|
||||||
|
|
@ -42,8 +42,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,8 +60,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(0)
|
\pdflayout=(0)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,8 +55,7 @@
|
||||||
% Slovak hyphenation rules applied
|
% Slovak hyphenation rules applied
|
||||||
\shyph
|
\shyph
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
\def\copyrightnotice{\penalty-1\vfill
|
\def\copyrightnotice{\penalty-1\vfill
|
||||||
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
||||||
|
|
|
||||||
|
|
@ -44,8 +44,7 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(1)
|
\pdflayout=(1)
|
||||||
|
|
||||||
\def\versionemacs{24} % version of Emacs this is for
|
\input emacsver.tex
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
|
|
||||||
\def\copyrightnotice{\penalty-1\vfill
|
\def\copyrightnotice{\penalty-1\vfill
|
||||||
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
\vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter
|
||||||
|
|
|
||||||
|
|
@ -49,8 +49,8 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(1)
|
\pdflayout=(1)
|
||||||
|
|
||||||
|
\input emacsver.tex
|
||||||
\def\versionemacs{18} % version of Emacs this is for
|
\def\versionemacs{18} % version of Emacs this is for
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
\def\versionvip{3.5}
|
\def\versionvip{3.5}
|
||||||
|
|
||||||
% Nothing else needs to be changed.
|
% Nothing else needs to be changed.
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,8 @@
|
||||||
\input pdflayout.sty
|
\input pdflayout.sty
|
||||||
\pdflayout=(1)
|
\pdflayout=(1)
|
||||||
|
|
||||||
|
\input emacsver.tex
|
||||||
\def\versionemacs{21} % version of Emacs this is for
|
\def\versionemacs{21} % version of Emacs this is for
|
||||||
\def\year{2012} % latest copyright year
|
|
||||||
\def\versionxemacs{20} % version of XEmacs this is for
|
\def\versionxemacs{20} % version of XEmacs this is for
|
||||||
\def\versionviper{3.0} % version of Viper this is for
|
\def\versionviper{3.0} % version of Viper this is for
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue