LaTEX:环境安装
参考[这里]
环境准备
安装
首先安装[CeTex]。有Basic和Full两种可选,理论上选择Basic后,如果用到缺失的内容也会自动更新到,这是我猜的,所以我选择的是Full的包。
安装完成后,打开WinEdt,这是一个收费软件,但是有特别的注册机(不推荐使用,支持正版),也可以试用30天。
Hello World
新建一个文档,保存为hello.tex,内容如下:
\documentclass{article}
\begin{document}
hello, world
\end{document}
然后在工具栏上选择LaTex或者PdfLaTex(在垃圾桶右边),
再点这个按钮生成。如果没问题,会有以下输出:
Command Line: pdflatex.exe --interaction=errorstopmode --synctex=1 "hello.tex" ... _____________________________________________________________________ PDFLaTeX Compilation Report (Pages: 1) Errors: 0 Warnings: 0 Bad Boxes: 0 _____________________________________________________________________
然后点击放大镜按钮可以打开生成的dvi文件,或者到hello.tex所在的目录下,可以看到hello.pdf。
基本语法
标题、作者和注释
\documentclass{article}
\author{Riguz}
\title{Welcome to Earth!} % This is title
\begin{document}
\maketitle
hello, world % This is comment
\end{document}
输出如下:
中文支持
只需要把开头的\documentclass{atricle}换成\documentclass{ctexart}就可以了。
\documentclass{ctexart}
\begin{document}
你好,我是Riguz!
\end{document}
注意可以保存为UTF-8(不带BOM头),WinEdt没找到在哪设置编码,我用Notepad++处理。另一种复杂一点的办法是使用CJK包,如下:
\documentclass{article}
\usepackage{CJK}
\begin{document}
\begin{CJK*}{GBK}{song}
我是汉子!Haha!
\end{CJK*}
\end{document}