yatex
changeset 88:ce2deaceb818 yatex-1.74
yatex-1.74
author | yuuji@gentei.org |
---|---|
date | Mon, 28 Sep 2009 11:37:51 +0900 |
parents | 7ab5cf76e676 |
children | 54efbed6af43 |
files | 00readme docs/yatexj yahtml.el yatex.el yatex.new yatex19.el yatexlib.el yatexprc.el |
diffstat | 8 files changed, 27 insertions(+), 17 deletions(-) [+] |
line diff
1.1 --- a/00readme Mon Sep 28 07:59:26 2009 +0900 1.2 +++ b/00readme Mon Sep 28 11:37:51 2009 +0900 1.3 @@ -1,3 +1,7 @@ 1.4 +・Mercurialリポジトリでも公開しています(1.74以降)。 1.5 + % hg clone http://www.yatex.org/hgrepos/yatex yatex 1.6 + でコピーし、その後は yatex/ ディレクトリ内で hg pull -u して下さい。 1.7 + 1.8 ・yatex-1.69 よりバイトコンパイルしないのをデフォルトとしました。 1.9 動作速度が(認識できない程度に)遅くなりますが、インストールしてある全ての 1.10 Emacsで利用できます。ほんの少し速くなるだけでもいい、Emacsの種類毎に
2.1 --- a/docs/yatexj Mon Sep 28 07:59:26 2009 +0900 2.2 +++ b/docs/yatexj Mon Sep 28 11:37:51 2009 +0900 2.3 @@ -1941,8 +1941,8 @@ 2.4 * LaTeX: Intro. 4. 2.5 * leftarrow: Image completion. 4. 2.6 * lpr format: lpr format. 4. 2.7 +* lpr$B$U$)!<$^$C$H(B[lpr$B$U$*$*$^$D$H(B]: lpr format. 4. 2.8 * lpr$B%U%)!<%^%C%H(B[lpr$B$U$*$*$^$D$H(B]: lpr format. 4. 2.9 -* lpr$B$U$)!<$^$C$H(B[lpr$B$U$*$*$^$D$H(B]: lpr format. 4. 2.10 * lpr$B%U%)!<%^%C%H$NJQ99(B[lpr$B$U$*$*$^$D$H$N$X$s$3$&(B]: Editing %# notation. 18. 2.11 * maketitle$B7?Jd40(B[maketitle$B$+$?$[$+$s(B]: maketitle$B7?Jd40(B. 4. 2.12 * M-C-@: $B4D6-$rC10L$H$7$?%8%c%s%W(B. 7. 2.13 @@ -1955,8 +1955,8 @@ 2.14 * platex: Invocation. 4. 2.15 * prefix ,: Commenting out. 4. 2.16 * prefix .: Commenting out. 4. 2.17 +* prefix <: Commenting out. 4. 2.18 * prefix >: Commenting out. 4. 2.19 -* prefix <: Commenting out. 4. 2.20 * prefix /: Online help. 4. 2.21 * prefix ?: Online help. 4. 2.22 * prefix &: What column. 4.
3.1 --- a/yahtml.el Mon Sep 28 07:59:26 2009 +0900 3.2 +++ b/yahtml.el Mon Sep 28 11:37:51 2009 +0900 3.3 @@ -1,6 +1,6 @@ 3.4 ;;; -*- Emacs-Lisp -*- 3.5 -;;; (c) 1994-2006 by HIROSE Yuuji [yuuji@yatex.org] 3.6 -;;; Last modified Tue Jun 16 10:11:50 2009 on firestorm 3.7 +;;; (c) 1994-2009 by HIROSE Yuuji [yuuji@yatex.org] 3.8 +;;; Last modified Mon Sep 28 10:45:04 2009 on firestorm 3.9 ;;; $Id$ 3.10 3.11 (defconst yahtml-revision-number "1.72" 3.12 @@ -176,7 +176,7 @@ 3.13 (defvar yahtml-image-viewer "display" "*Image viewer program") 3.14 (defvar yahtml-www-browser "firefox" "*WWW Browser command") 3.15 (defvar yahtml-kanji-code 2 3.16 - "*Kanji coding system number of html file; 1=sjis, 2=jis, 3=euc") 3.17 + "*Kanji coding system number of html file; 1=sjis, 2=jis, 3=euc, 4=UTF-8") 3.18 ;;(defvar yahtml-coding-system 3.19 ;; (cdr (assq yahtml-kanji-code YaTeX-kanji-code-alist)) 3.20 ;; "Kanji coding system")
4.1 --- a/yatex.el Mon Sep 28 07:59:26 2009 +0900 4.2 +++ b/yatex.el Mon Sep 28 11:37:51 2009 +0900 4.3 @@ -1,15 +1,15 @@ 4.4 ;;; -*- Emacs-Lisp -*- 4.5 ;;; Yet Another tex-mode for emacs - //野鳥// 4.6 -;;; yatex.el rev. 1.73.1 4.7 -;;; (c)1991-2007 by HIROSE Yuuji.[yuuji@yatex.org] 4.8 -;;; Last modified Tue Nov 6 10:17:53 2007 on firestorm 4.9 +;;; yatex.el rev. 1.74 4.10 +;;; (c)1991-2009 by HIROSE Yuuji.[yuuji@yatex.org] 4.11 +;;; Last modified Mon Sep 28 10:44:35 2009 on firestorm 4.12 ;;; $Id$ 4.13 ;;; The latest version of this software is always available at; 4.14 ;;; http://www.yatex.org/ 4.15 4.16 (require 'comment) 4.17 (require 'yatexlib) 4.18 -(defconst YaTeX-revision-number "1.73.1" 4.19 +(defconst YaTeX-revision-number "1.74" 4.20 "Revision number of running yatex.el") 4.21 4.22 ;---------- Local variables ----------
5.1 --- a/yatex.new Mon Sep 28 07:59:26 2009 +0900 5.2 +++ b/yatex.new Mon Sep 28 11:37:51 2009 +0900 5.3 @@ -1,7 +1,13 @@ 5.4 What's new in YaTeX/yahtml 5.5 野鳥/yahtml - 各バージョンの変更点について 5.6 5.7 -1.74 === yahtml === 5.8 +1.74 === yatex === 5.9 + YaTeX-kanji-code が 4 のときは UTF-8 とした。 5.10 + Previewファイルの拡張子が.dviであるという仮定を弱くした(pdf等)。 5.11 + pdfopenを呼ぶときの問題への対策追加(by松田さん)。 5.12 + 拡張子 pdf に対するデフォルトヴューアを追加。 5.13 + === yahtml === 5.14 + yahtml-kanji-code が 4 のときは UTF-8 とした。 5.15 [prefix] Return Intelligent-newline をtable対応にした。 5.16 cssファイル中に@importがあったときのバグを除去。 5.17 cssの *.class 解釈を修正。
6.1 --- a/yatex19.el Mon Sep 28 07:59:26 2009 +0900 6.2 +++ b/yatex19.el Mon Sep 28 11:37:51 2009 +0900 6.3 @@ -1,7 +1,7 @@ 6.4 ;;; -*- Emacs-Lisp -*- 6.5 -;;; YaTeX facilities for Emacs 19 6.6 -;;; (c)1994-2006 by HIROSE Yuuji.[yuuji@yatex.org] 6.7 -;;; Last modified Sun Feb 11 09:19:12 2007 on firestorm 6.8 +;;; YaTeX facilities for Emacs 19 or later 6.9 +;;; (c)1994-2009 by HIROSE Yuuji.[yuuji@yatex.org] 6.10 +;;; Last modified Mon Sep 28 10:45:30 2009 on firestorm 6.11 ;;; $Id$ 6.12 6.13 ;(require 'yatex)
7.1 --- a/yatexlib.el Mon Sep 28 07:59:26 2009 +0900 7.2 +++ b/yatexlib.el Mon Sep 28 11:37:51 2009 +0900 7.3 @@ -1,8 +1,8 @@ 7.4 ;;; -*- Emacs-Lisp -*- 7.5 ;;; YaTeX and yahtml common libraries, general functions and definitions 7.6 ;;; yatexlib.el 7.7 -;;; (c)1994-2006 by HIROSE Yuuji.[yuuji@yatex.org] 7.8 -;;; Last modified Sat Apr 18 07:32:45 2009 on firestorm 7.9 +;;; (c)1994-2009 by HIROSE Yuuji.[yuuji@yatex.org] 7.10 +;;; Last modified Mon Sep 28 10:46:39 2009 on firestorm 7.11 ;;; $Id$ 7.12 7.13 ;; General variables
8.1 --- a/yatexprc.el Mon Sep 28 07:59:26 2009 +0900 8.2 +++ b/yatexprc.el Mon Sep 28 11:37:51 2009 +0900 8.3 @@ -1,8 +1,8 @@ 8.4 ;;; -*- Emacs-Lisp -*- 8.5 ;;; YaTeX process handler. 8.6 ;;; yatexprc.el 8.7 -;;; (c)1993-2007 by HIROSE Yuuji.[yuuji@yatex.org] 8.8 -;;; Last modified Thu May 7 13:47:28 2009 on firestorm 8.9 +;;; (c)1993-2009 by HIROSE Yuuji.[yuuji@yatex.org] 8.10 +;;; Last modified Mon Sep 28 10:47:11 2009 on firestorm 8.11 ;;; $Id$ 8.12 8.13 ;(require 'yatex)