cmaptools的中文显示问题

linux下使用cmaptools需要配置合适的中文字体。方法之一就是利用java的字体数据,例如:
cp -i /etc/java-6-openjdk/fontconfig.properties $DIR/../jre/lib
然后在使用中,要在“样式”菜单中选择合适的中文字体。

还有个问题,中文输入怎么解决?(目前,我每一个汉字都在gedit里写好,复制到cmaptool中)不过,先做英文的,挺好。

latex presentation模版,latex poster模版,latex BNU thesis模版

CJK latex
可以用pdflatex编译,也可以用xelatex编译。
latex presentation 模版
BNU thesis 模版
latex poster模版

需要安装CJK latex,还有beamer。注意cjk字体可能在不同的计算机上有所不同,尤其是linux与windows之间。另外请参考 CJKutf8以及回帖。

LaTeX如何入门:
1、找一个模版写写文章,练练手。
2、推荐阅读latex入门:一份不太简短的 LTEX 2ε 介绍
3、google

注意:第一、思想的转变:不控制形式,只关注内容。第二、不依赖于所见即所得,不依赖于可视化菜单,文章的样子慢慢地在脑子里形成,符号用命令比可视化要快。例如$$\alpha$$只要写下$\alpha$即可。

Beamer + a0poster制作poster

1、安装latex包: Install required latex packages

beamer class (all examples with beamer v.3.07 – Note: with beamer 3.10 do NOT use option hyperref={pdfpagelabels=false})
fp package
xkeyval package (in a version supporting choice keys, e.g. v2.5f)
type1cm package for scalable and huge math fonts
paralist package

这些包都可以直接在texlive中安装,或者手动安装。

2、修改吴金闪在Philippe Dreuw and Thomas Deselaers的beamerposter基础上改写的模版(文件中一个用的是UBC模版,一个用的是BNU模版,一定要改成自己的),把内容换成自己的。
点击此处下载模版
Download and adjust the theme (.sty) file, and then edit the template (.tex) file. Those files are originally from beamerposter created by Philippe Dreuw and Thomas Deselaers.

3、编译: Compiling
latex test.tex
latex test.tex
dvipdf test.dvi
完成。

4、有的时候生成的pdf文件不包含字体,因此需要pdfviewer来解释。这时候会出现字体缺失或者错乱的问题。解决方式: Sometimes the generated pdf file does not include the embedded fonts. In this case, there will be problems in displaying some characters and symbols. In order to correctly display all fonts, you can try the following:
latex test.tex
latex test.tex
dvips test.dvi
ps2pdf -dMaxSubsetPct=100 -dSubsetFonts=true -dEmbedAllFonts=true -dPDFSETTINGS=/printer test.ps