home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PILOT / APPS / JAPANSTE / SKKDOCS / README-E.TXT < prev    next >
Encoding:
Text File  |  1996-12-03  |  7.7 KB  |  254 lines

  1. Table of Contents
  2. =================
  3.  
  4. 1. What is SKK?
  5. 2. Files
  6. 3. Installation
  7. 4. Personal setting
  8. 5. SKK Mailing List
  9.  
  10. 1. What is SKK?
  11. ===============
  12.  
  13. SKK is a very fast and efficient Japanese input system written entirely in
  14. emacs lisp and runs under Nemacs (which is a Japanese version of
  15. GNU Emacs, developed by Mr. Ken'ichi Handa <handa@etl.go.jp> et al.),
  16. under Mule (which is a Multi-lingual version of GNU Emacs, also
  17. developed by Mr. Ken'ich Hand et al.) and under Demacs (which is a DOS
  18. version of GNU Emacs developed by Manabu Higashida
  19. <manabu@sigmath.osaka-u.ac.jp> and HIRANO Satoshi
  20. <hirano@tkl.iis.u-tokyo.ac.jp>).
  21.  
  22. The author of skk.el and other emacs lisp libraries is Masahiko Sato
  23. (masahiko@sato.riec.tohoku.ac.jp) and the author of skkserv.c is
  24. Yukiyoshi Kameyama (kam@sato.riec.tohoku.ac.jp).
  25.  
  26. SKK is free software distributed under the terms of the GNU General
  27. Public License.
  28.  
  29. ReadMe and SKK.tex explain SKK in more details.
  30.  
  31. 2. Files
  32. ========
  33.  
  34. This package contains SKK 8.6 and consists of the following files:
  35.  
  36.     COPYING
  37.     Configure
  38.     Configure.euc
  39.     List-of-Files
  40.     Makefile
  41.     ReadMe
  42.     ReadMe.English
  43.     SKK-JISYO.JIS2
  44.     SKK-JISYO.L
  45.     SKK-JISYO.M
  46.     SKK-JISYO.S
  47.     SKK.tut
  48.     SKK.tut.E
  49.     emacs-sort
  50.     jisyo-tools/Makefile
  51.     jisyo-tools/README
  52.     jisyo-tools/skkjisyo-entries.c
  53.     jisyo-tools/skkjisyo-expr.c
  54.     jisyo-tools/skkjisyo-sort.c
  55.     latexinfo.el
  56.     latexinfo.sty
  57.     skk
  58.     skk-is-m.el
  59.     skk-is-n.el
  60.     skk-romkan.tex
  61.     skk-tools.el
  62.     skk-tut.el
  63.     skk.el
  64.     skk.ps
  65.     skk.tex
  66.     skkserv/Makefile
  67.     skkserv/README
  68.     skkserv/add-rc.local
  69.     skkserv/add-services
  70.     skkserv/skkserv.c
  71.     skkserv/skkserv.h
  72.     skktools/Makefile
  73.     skktools/READ.ME
  74.     skktools/README
  75.     skktools/adddummy.t
  76.     skktools/alpha-kana.pl
  77.     skktools/atok2skk.pl
  78.     skktools/codeconv.pl
  79.     skktools/convprog.t
  80.     skktools/kana2roma.pl
  81.     skktools/list2skk.t
  82.     skktools/pubdic2list.t
  83.     skktools/removedummy.t
  84.     skktools/roma2kana.pl
  85.     skktools/skk2list.t
  86.     skktools/skkconv.t
  87.     skktools/sub.t
  88.     skktools/wx2skk.pl
  89.     tabular.sty
  90.  
  91. 3. Installation
  92. ===============
  93.  
  94. Run Configure.euc in this directory and follow the instructions.  If
  95. you can become a superuser, then login as root and run the configure
  96. file.
  97.  
  98. 4.  Personal setting
  99. ====================
  100.  
  101. There are two ways to use the common dictionary (SKK-JISYO.L):
  102.  
  103.     (i)  Read in the dictionary into an Emacs buffer.
  104.     (ii) Use the SKK dictionary server.
  105.  
  106. If you will be using the common dictionary by method (i) then follow
  107. the steps described in 4.1, and if not, follow the steps described in
  108. 4.2.
  109.  
  110. 4.1
  111. ---
  112.  
  113. [i-1] Add the following lines to your .emacs file:
  114.  
  115.         (global-set-key "\C-x\C-j" 'skk-mode)
  116.         (global-set-key "\C-xj" 'skk-auto-fill-mode)
  117.         (global-set-key "\C-xJ" 'register-to-point)
  118.         (global-set-key "\C-xt" 'skk-tutorial)
  119.         (autoload 'skk-mode "skk" nil t)
  120.         (autoload 'skk-tutorial "skk-tut" nil t)
  121.         (autoload 'skk-check-jisyo "skk-tools" nil t)
  122.         (autoload 'skk-merge "skk-tools" nil t)
  123.         (autoload 'skk-diff "skk-tools" nil t)
  124.  
  125. Moreover, if you are going to run skk under Nemacs or Mule based on
  126. Emacs version 18, then add the following lines to .emacs
  127.  
  128.         (global-set-key "\C-s" 'skk-isearch-forward)
  129.         (global-set-key "\C-r" 'skk-isearch-backward)
  130.         (autoload 'skk-isearch-forward "skk-isearch" nil t)
  131.         (autoload 'skk-isearch-backward "skk-isearch" nil t)
  132.  
  133. If you are going to run SKK under Mule based on Emacs version 19, then
  134. add the following lines to .emacs
  135.  
  136.         (autoload 'skk-isearch-mode-setup "skk-isearch" nil t)
  137.         (autoload 'skk-isearch-mode-cleanup "skk-isearch" nil t)
  138.         (add-hook 'isearch-mode-hook
  139.                   (function (lambda ()
  140.                               (and (boundp 'skk-mode) skk-mode
  141.                               (skk-isearch-mode-setup)))))
  142.         (add-hook 'isearch-mode-end-hook
  143.                   (function (lambda ()
  144.                               (and (boundp 'skk-mode) skk-mode
  145.                               (skk-isearch-mode-cleanup)))))
  146.  
  147. [i-2] Create the file ~/.skk and the put the following line in it:
  148.  
  149.         (setq skk-large-jisyo ".../SKK-JISYO.L")
  150.  
  151. where `...' denotes the directory where you installed the common
  152. dictionary.
  153.  
  154. 4.2
  155. ---
  156.  
  157. [ii-1] Add the following lines to your .emacs file:
  158.  
  159.         (global-set-key "\C-x\C-j" 'skk-mode)
  160.         (global-set-key "\C-xj" 'skk-auto-fill-mode)
  161.         (global-set-key "\C-xJ" 'register-to-point)
  162.         (global-set-key "\C-xt" 'skk-tutorial)
  163.         (autoload 'skk-mode "skk" nil t)
  164.         (autoload 'skk-tutorial "skk-tut" nil t)
  165.         (autoload 'skk-check-jisyo "skk-tools" nil t)
  166.         (autoload 'skk-merge "skk-tools" nil t)
  167.         (autoload 'skk-diff "skk-tools" nil t)
  168.  
  169. Moreover, if you are going to run SKK under Nemacs or Mule based on
  170. Emacs version 18, then add the following lines to .emacs
  171.  
  172.         (global-set-key "\C-s" 'skk-isearch-forward)
  173.         (global-set-key "\C-r" 'skk-isearch-backward)
  174.         (autoload 'skk-isearch-forward "skk-isearch" nil t)
  175.         (autoload 'skk-isearch-backward "skk-isearch" nil t)
  176.  
  177. If you are going to run skk under Mule based on Emacs version 19, then
  178. add the following lines to .emacs
  179.  
  180.         (autoload 'skk-isearch-mode-setup "skk-isearch" nil t)
  181.         (autoload 'skk-isearch-mode-cleanup "skk-isearch" nil t)
  182.         (add-hook 'isearch-mode-hook
  183.                   (function (lambda ()
  184.                               (and (boundp 'skk-mode) skk-mode
  185.                               (skk-isearch-mode-setup)))))
  186.         (add-hook 'isearch-mode-end-hook
  187.                   (function (lambda ()
  188.                               (and (boundp 'skk-mode) skk-mode
  189.                               (skk-isearch-mode-cleanup)))))
  190.  
  191.  
  192. [ii-2] Put the following lines in your .skk file:
  193.  
  194.         (setq skk-server-host "...") ;; `...' is the name of the server host
  195.         (setq skk-serv "/usr/local/soft/nemacs/etc/skkserv")
  196.         (setq skk-aux-large-jisyo ".../SKK-JISYO.L") ;; ... is the
  197.         ;; directory where you installed the common dictionary
  198.  
  199. 4.3
  200. ---
  201.  
  202. If you will be using SKK under Demacs, follow the steps in 4.1 and
  203. then add the following line in your _emacs file:
  204.  
  205.         (setq skk-init-file "~/_skk")
  206.  
  207. 4.4
  208. ---
  209.  
  210. You can learn the usage of SKK by the tutorial program, which you can
  211. invoke by typing 'C-x t'.  If you wish to use the English tutorial
  212. text, put the following line in your .emacs file:
  213.  
  214.         (setq skk-tut-file ".../SKK.tut.E") ;; ... is the directory
  215.         ;; you installed SKK.tut.E
  216.  
  217. 5. SKK Mailing List
  218. ===================
  219.  
  220. SKK mailing list has been created to discuss various aspects of SKK, and
  221. to exchange information about SKK.  Questions and answers to them, problems
  222. and solutions to them, bugs and fixes to them, suggestions, contributions
  223. of utilities etc. are the main topics so far.
  224.  
  225. Discussions are mainly done in Japanese. If you cannot enter Japanese
  226. texts for some reasons, you can send your articles in English, but you will
  227. probably get replies in Japanese.  We are assuming that you have Nemacs
  228. and a terminal which can display Japanese.
  229.  
  230. (1) To join the mailing list, send an email to the following address.
  231.  
  232.     skk-join@sato.riec.tohoku.ac.jp
  233.  
  234. (2) Contributions to the list should be sent to:
  235.  
  236.     skk@sato.riec.tohoku.ac.jp
  237.  
  238. (Articles in Japanese must be encoded in JIS.)
  239.  
  240. (3) To leave the mailing list, send an email to the following address.
  241.  
  242.     skk-leave@sato.riec.tohoku.ac.jp
  243.  
  244. ------------------------------------------------------------------------------
  245.  
  246.                 Masahiko Sato (masahiko@sato.riec.tohoku.ac.jp)
  247.                 and
  248.                 Yukiyoshi Kameyama (kam@sato.riec.tohoku.ac.jp)
  249.                 Research Institute of Electircal Communication
  250.                 Tohoku University
  251.                 2-1-1, Katahira, Aoba-ku
  252.                 Sendai 980
  253.                 Japan
  254.