1 測試環境的例子
\documentclass{article} %聲明文檔的類型是文章 \begin{document} %文檔開始 this is my first document \end{document} %文檔結束
2 中文環境
\documentclass[UTF8]{ctexart} \begin{document} \section{文字} 文字排版 \section{數學} \[ a^2 + b^2 = c^2 \] \end{document}
3 提綱例子
%-*- coding: UTF-8 -*- % gougu.tex % 勾股定理 \documentclass[UTF8]{ctexart} \title{雜談勾股定理} \author{張三} \date{\today} \bibliographystyle{plain} \begin{document} \maketitle \tableofcontents \section{勾股定理在古代} \section{勾股定理的近代形式} \bibliography{math} \end{document}
- % 開頭是註釋的意思
- utf8 格式文件
- 文件名
- 文件內容
- documentclass 表示文檔類
- utf8 格式的文件
- 由於是中文使用 ctexart
- title 標題
- author 做者
- date 時間
- today 表示今天
- maketitle 實際輸出論文標題
- tableofcontents 輸出目錄
- section 開始新的一節
4 命令
以\開始,接着命令名html
- 無參數 \command
- 那個參數 \command{arg1}{arg2}…{argn}
- 可選參數 \command[{arg1}…{argm}] {argn}
4.1 腳註
\footnote(內容)java
4.2 分組
\begin{環境名} 環境內容 \end{環境名(同begin)}python