latex用法疑难解析
1.问题:如何生成ps(PostScript)文件?
回答: 方法有二
(1)用dvips这个工具,在WinEdt编辑器中专门有一个按钮;
(2)如果使用windows系统的话,在打印机中安装HP LaserJet 4/4M PostScript
的驱动程序。在浏览DVI文件的时候,打印到文件就可以了。文件是保存为*.prn的,
您只要改他为*.ps就可以了。
2.问题: 如何插入图象?
回答:我知道的方法有,
(1)使用emtex下的img2cct.exe工具。
首先将图象改变为单色BMP,用画笔就可以做这件事情,提醒在保存的时候一定要存为
单色图。例如有单色BMP文件test.bmp,然后执行命令:img2cct test.bmp -t3 -c0
具体img2cct的参数,可以直接执行"img2cct.exe"来查看,最后将img2cct.exe生成的
test.tex文件的代码拷贝到您的文章中,适当调整位置,就可以了。
(2)使用 Scientific WorkPlace(Word) 的用户,只要菜单上File/Import Picture
功能就行。
(3)利用绘图软件LaTeXCAD,可直接将图变成LaTeX语言。
(4)利用软件将图象格式另存为ps格式。
usepackage{graphicx}
egin{document}
includegraphics{your.ps}
end{document}
3.问题:现在很多文章的定理,定义,推论, 例子都采用统一编号,不再是独立编号,如
定义1.1,接下来可能是定理1.2,然后推论1.3怎么做一个总的框架环境,实现这种
自动的编号呢?
回答:
ewtheorem{athm}{heiti }[section]
ewenvironment{thm} [1] {def {#1}
egin{athm} fangsong
m} {end {athm}}
正文中如下使用即可:
egin{thm}{定义}
end{thm}
或 begin{thm}{定理}
end{thm} 等等.
4.问题:在公式或定理,定义编号上,我不想按原来的格式,如定理4.2,而想用
定理4.1.2. 或者就直接定理123, 怎么作修改?
回答: 用
enewcommand重新定义一下标号就可以了.
enewcommand { heequation} {arabic{chapter}.
arabic{section}.arabic{eqation}
重新定义后标号就成了4.1.2这样的了.(在article风格中是section和subsection)
5.问题:怎么使用不同的字号和字体?(中英文),怎么使用双页?(就象书那样)
documentstyle后面的选项和格式都有什么?
回答:(1)关于字号,你如果是想改通篇文章的字号.最简单的方法是将第一句
documentstyle[选项]{格式} 中的选项作修改。
(选项有...,9pt,10pt(默认),11pt,...;twoside,twocolumn,proc,oneside(默认);
leqno(默认),fleqn,epsf. 格式有book,report,article,letter;cbook,carticle,...)
(2)如想选用双页,就用twoside,(cbook默认就是twoside,页码在上面,章的首页页码在下。
(3)在正文某处想改字号大小, 英文用
iny, scriptsize, footnotesize, small,
ormalize,large, Large, LARGE,
huge, Huge
中文用 zihao{n} 此处n可取值: 0(初号),1(一号),2(二号),3(三号),
4(四号),-4(小四),5,-5,6,7等。
(4)关于字体, 英文常用的: f黑体,
m罗马, sl斜体, cal花体, sc, it公式缺省,
sf等线体。中文常用: songti, kaishu, heiti, fangsong, iaosong,。
5.问题:LaTeX 如何生成目录?
回答:1.最好自己定义目录形式,美观方便,下面是定义好的几个,你不妨试试
(1)defmlA#1#2#3{par
oindenthspace*{1 true cm}parbox[b]{12.3 true cm}
{protecthspace*{-1 true cm}{#1}quad{#2}~dotfill~}
hbox to1.0 true cm{~(hss#3hss)}vspace{2mm}}
(2)defmlB#1#2#3{par
oindenthspace*{1 true cm}parbox[b]{12.3 true cm}
{protecthspace*{-1 true cm}{#1}~dotfill~hbox{#2}}
hbox to1.0 true cm{~(hss#3hss)}vspace{2mm}}
(3)defmlC#1#2{par
oindenthspace*{1 true cm}parbox[b]{12.3 true cm}
{protecthspace*{-1 true cm}quad{#1}~dotfill~}
hbox to1.0 true cm{~(hss#2hss)}vspace{2mm}}
(4)defmlD#1#2{par
oindenthspace*{1 true cm}parbox[b]{12.3 true cm}
{protecthspace*{-1 true cm}quad{#1}~hfill~}
hbox to1.0 true cm{~(hss#2hss)}vspace{2mm}}
2.使用方法如下:
mlA{title}{author}{page no.}
效果: title author .................. (page no.)
mlB{title}{author}{page no.}
效果:title .......................... author (page no.)
mlC{title}{page no.}
效果: title ......................... (page no.)
mlD{title}{page no.}
效果: title (page no.)
6.问题:LaTeX中如何使公式编号具有(1.2)这种格式?
回答:documentclass{article}
usepackage{amsmath}
umberwithin{equation}{section}
egin{document}
section{my section}
egin{equation}
x^2+y^2=1
end{equation}
end[document]
7.问题:请问如何把word文档转换成latex的格式?
回答:用mathtype5.0, 双击公式可打开公式编辑器,设定菜单Preferences->Translators
Translate to another language:选latex2.09 and later ,uncheck include translator
name and include mathtype data 选中整个公式,^C,到notepad里面^V就行了。
(六)LaTeX资源
所有的Tex软件都是免费的,中国最著名的网站有:(1)http://www.ctex.org;
(2)http://texhome.dhs.org/texhome。在这两个网站中包含了你所需要的TeX软件及相关
辅助工具、具体的语法指导,在线的语法参考书等等。
参考文献
[1]LateX智能化科技排版系统,冯伟国编著,同济大学出版社,1993.
[2]TeX、AMS-TeX和LaTeX使用简介,李勇编,高等教育出版社,2000.
[3]LaTeX2e科技排版指南,邓建松 彭冉冉 陈长松编著,科学出版社,2001
from: http://blog.sina.com.cn/s/blog_4b6a68ac010007c2.html