% exemple.tex %--------------------导言区------------------- % 用于设置性质(全局设置),自定义一些命令 \documentclass{article}%文件类型,会根据不同的文件类型有不同的排版,例如article, book, letter等等 %----------标题区------------ \title{Tex Introduction} \author{GuoYi} \date{\today}%\today会自动同步到今天 %--------------------正文区------------------- % 一个tex有且只有一个document部分 \begin{document} \maketitle%实际输出标题区 Hello world! % 正文中空行表换行 % $行内公式$ $$行间公式$$ Let $f(x)$ be defined by the formula $$f(x)=2sinx$$ which is a polynomial of degree 2. \end{document}