Emacs with Whizzytex.

Real time preview with whizzytex.


But a bit awkward. And I cannot view in Japanese!

Thanks to whizzytexの利用方法

I want anyone who want the good way in writing tex file.

Note

First I couldn't make the advi(1.7.3) source.

~/Desktop/advi-1.7.3 2 $ make
(...)
/opt/local/bin/ocamlopt.opt  -I /opt/local/lib/ocaml/ -I /opt/local/lib/ocaml/site-lib/camlimages -o ttfont.cmx -c ttfont.ml
File "ttfont.ml", line 94, characters 14-29:
Unbound value Jis_table.table

Because the camlimages-3 doesn't have Jis_table module, used in ttfont.ml (in advi).

So I modified src/ttfont.ml with table (GODI Package Documentation).

~/Desktop/advi-1.7.3 $ diff src/ttfont.ml ../advi-1.7.3\ 2/src/ttfont.ml
20a21
> 
25,26d25
< 
< 
91,710d89
< 
< let jis_table =
< "0\0000\0010\002\255\012\255\0140\251\255\026\255\027\255\031\255\0010\155\
< 0\156\000\180\255@\000\168\255>\255\227\255?0\2530\2540\1570\1580\003N\221\
< 0\0050\0060\0070\252\032\021\032\016\255\015\255<\255^\"%\255\\\032&\032%\
(...)
< \143\155\177\155\187\156\000\157p\157k\250-\158\025\158\2090\2510\251!p!q\
< !r!s!t!u!v!w!x!y\255\226\255\228\255\007\255\002";;
< 
< 
715,716c94,95
<   int_of_char jis_table.[pos] * 0x100 + 
<     int_of_char jis_table.[pos+1] 
---
>   int_of_char Jis_table.table.[pos] * 0x100 + 
>     int_of_char Jis_table.table.[pos+1] 

Bad way...