Contents
  1. 1. 上手LaTeX基本文档结构
    1. 1.1. 绪论
    2. 1.2. 实验环境
    3. 1.3. 实验
    4. 1.4. 进阶

上手LaTeX基本文档结构

绪论

最佳学习软件的方式是上手。
下面提供一个LaTeX基本文档结构。

实验环境

操作系统:windows 7 32 bit
编辑器:WinEdt 7.0

实验

  1. 语法说明

所有的环境,都是起于 $$\begin{环境名称},止于
\end{环境名称}$$这两个指令之间的文稿都会被作用,而且,环境之内还可以套用其他不同的环境。 LaTeX 文稿的内文,其实就是包在一个
\begin{document} 和 \end{document} 这个 document 环境当中。

  1. 例子

这个例子以article为例。

1
2
3
4
5
6
7
\documentclass{article} % 定义文件类型,有book,article等
\begin{document} %开始正文部分
This is my first type setting example.
\end{document}

运行效果
运行结果

进阶

增加章节和公式。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%编辑于20170225 by deen
\documentclass[12pt]{article} % 定义文件类型(后续文章详细说明),有book,article等 ,文章字体大小为12pt
\usepackage{CJK} % 引用中文包
\usepackage{amsmath} % 引用数学类宏包
\begin{CJK}{GBK}{song} % 开始中文环境,使用宋体
\begin{document} % 开始正文部分
\section{LaTeX 上手}
Hello \LaTeX{}!
\subsection{语法}
Hello \LaTeX! $f(x) = x^2$
% 此处空格代表换行
质能方程表述如下:
$$ E = mc^2 $$
\subsection{实践}
Hello deen!
\end{CJK} %结束中文
\end{document} %结束正文部分

效果如下:
基本文档结构


附 LaTex的学习网址

  1. LaTeX入门手册
  2. CTeX 中文论坛

如有不妥当之处,请指出,谢谢!

comments powered by HyperComments
Contents
  1. 1. 上手LaTeX基本文档结构
    1. 1.1. 绪论
    2. 1.2. 实验环境
    3. 1.3. 实验
    4. 1.4. 进阶
Fork me on GitHub