Skip to content

Latest commit

 

History

History
92 lines (55 loc) · 1.7 KB

thesis.md

File metadata and controls

92 lines (55 loc) · 1.7 KB

绪言

使用Pandoc Markdown写论文的正文。

阅读thesis.mdtemplate.texabstract.texthanks.md来看看这篇文章是从什么样的源码生成的。

章节1

引用

请在ref.bib里添加引用文献,然后可以这样引用\cite{aumann1976agreeing},也可以让标号出现在右上角\citeu{aumann1976agreeing}。

ref.bib中所有的条目都出现在参考文献一节中,而不仅仅是被引用的条目。

列表

无序列表

  • here is my first list item.
  • and my second.

有序列表

  1. one
  2. two
  3. three

代码

行内代码

这是行内代码print 1 + 1

代码片段

qsort []     = []
qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++
               qsort (filter (>= x) xs)

表格

Right Left Center Default


 12     12        12            12
123     123       123          123
  1     1          1             1

: Demonstration of simple table syntax\label{table:simple}.

图请放入figures目录下。

图示例\label{fig:radial}

公式

行内公式

这是行内公式$\sum_{i=1}^{10} t_i$。

块公式

\begin{equation} x = a_0 + \cfrac{1}{a_1 + \cfrac{1}{a_2 + \cfrac{1}{a_3 + \cfrac{1}{a_4} } } } \end{equation}

\begin{equation} \lim_{x \to \infty} \exp(-x) = 0 \end{equation}

交叉引用

  1. 如表格\ref{table:simple}所示;
  2. 如图\ref{fig:radial}所示。

章节2

可以自定义LaTeX指令。

\newcommand{\ugt}{This is a command named \texttt{{\textbackslash}ugt}}

\ugt