美文网首页
LaTeX系列:基本框架

LaTeX系列:基本框架

作者: Bioconductor | 来源:发表于2016-11-07 14:39 被阅读201次

用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系列:基本框架

      本文链接:https://www.haomeiwen.com/subject/dwdouttx.html