其他分享
首页 > 其他分享> > latex

latex

作者:互联网

 

 

<style></style>

Table of Contents

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}

4 命令

以\开始,接着命令名

4.1 脚注

\footnote(内容)

4.2 分组

\begin{环境名} 环境内容 \end{环境名(同begin)}

Created: 2019-06-24 周一 09:49

Validate

标签:latex,begin,勾股定理,end,section,documentclass,document
来源: https://www.cnblogs.com/heidekeyi/p/11075499.html