LaTex

来源:互联网 发布:淘宝油烟净化器 编辑:程序博客网 时间:2024/04/30 15:46

LaTex相关:

软件:

用的MikTex   LaTeXstudio(可选,我是用来查符号)+ Sublime(编写文档)+ pdfLatex-MakeIatex-Bibtex(编译)+ sumatraPDF(查看)


----0----第一篇文章用LaTex写的,查了很多资料,基本从小白到刚入门了 ----------

1. 基本结构

\documentclass{article}

\title{papername}

\author{somename}

\date{somedate}

\begin{document}

      \maketile

      \section{section1}contents

\end{document}

基本的用法就是 \command{options},  

\begin{xxx}...\end{xxx}之间是名为xxx环境区域


常用的command:

\section{title} %章节 自动编号

\subsection{} % 子章节

\pararaph{} % 段落

\subparagraph{} %字段落

\\ %换行

\newpage %新起一页

\tableofcontents %生成目录


2. 图片插入

3. 数学公式

\usepackage{amsmath} %使用提供的amsmath环境包

4. 算法相关

5. 参考文献



----1-----进阶--------

1. 文件组织

2. 














---------------reference-----------------------

https://www.latex-tutorial.com/


http://www.latex-community.org/forum/

http://tex.stackexchange.com/

0 0