使用Pandoc Markdown写论文的正文。
阅读thesis.md
、template.tex
、abstract.tex
、thanks.md
来看看这篇文章是从什么样的源码生成的。
请在ref.bib
里添加引用文献,然后可以这样引用\cite{aumann1976agreeing},也可以让标号出现在右上角\citeu{aumann1976agreeing}。
ref.bib
中所有的条目都出现在参考文献一节中,而不仅仅是被引用的条目。
- here is my first list item.
- and my second.
- one
- two
- 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
目录下。
这是行内公式$\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}
- 如表格\ref{table:simple}所示;
- 如图\ref{fig:radial}所示。
可以自定义LaTeX指令。
\newcommand{\ugt}{This is a command named \texttt{{\textbackslash}ugt}}
\ugt