LaTEX:环境安装:修订间差异
imported>Soleverlee |
imported>Soleverlee |
||
第32行: | 第32行: | ||
=基本语法= | =基本语法= | ||
==标题、作者和注释== | ==标题、作者和注释== | ||
<source lang="lisp"> | |||
\documentclass{article} | |||
\author{Riguz} | |||
\title{Welcome to Earth!} % This is title | |||
\begin{document} | |||
\maketitle | |||
hello, world % This is comment | |||
\end{document} | |||
</source> | |||
输出如下: | |||
[[Image:CeTex_Title.png]] | |||
==中文支持== | ==中文支持== | ||
==章节和段落== | ==章节和段落== |
2016年6月3日 (五) 05:00的版本
参考[这里]
环境准备
安装
首先安装[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}
输出如下: