LaTeX系列:基本框架

用latex写文档的基本套路

这里给出若干个框架,跟着框架来写,学latex就很容易啦!

注:这里的若干个是到后面还会增加的缘故。

第一个例子

代码如下

\documentclass[11pt]{article}


%=========================宏包区=================%
\usepackage{CJK}
%==============================================%



%==============================================%



\begin{document}
%看后面的\end{document}

%=====%
\begin{CJK}{GBK}{song}
%对应\end{CJK}
%============%
% 题目
\title{\small 我们要加油学习 2016 Mathematical Contest in Modeling (MCM) paper \\ \huge Universe without Shiver  $\colon$\\ The Commercial Time-depend Estimate of Space Debris Cleaning}

% 作者
\author{your name 你的名字\\
emails 邮箱
}

% 时间
\date{}

\maketitle


\newpage

%=====================================摘要==========================================%

\begin{abstract}
摘要
\end{abstract}




%============================正文部分=======================================%


\newpage
\section{1}

\subsection{1.1}









\end{CJK}

\end{document}

详细代码百度云链接:http://pan.baidu.com/s/1hrNF1Rm

你可能感兴趣的:(LaTeX系列:基本框架)