導言區(qū) 主要進行全局設置 title author data
documentclass{article}
%article,book, report, letter 文件的類
\title{My First Document}
\author{Elaine}
\date{\today}
正文區(qū)
\begin {document}
% begin和end中間是環(huán)境名稱里烦,一個latex文件只能有一個document環(huán)境
\maketitle
% 輸出標題
`Hello World!`
%增加空行實現(xiàn)換行
%在原文檔中添加注釋比如 here is my big formula
Let $f(x)$ be defined by the formula %數學模式與文本模式
$$f(x) = 3x^2+x-1$$ which is a polynomial of degree 2. % 行間公式
\end{document}