以下是我的个人论文模板,运行环境为Xelatex(在线ide:Sharelatex.com)

鉴于本人常有插入程序的需求,故引用了lstlisting

\RequirePackage{ifxetex}
\ifxetex
\documentclass[hyperref, UTF8, c5size, no-math, winfonts,a4paper]{ctexart}
\punctstyle{quanjiao}
\defaultfontfeatures{Mapping=tex-text}
\setCJKmainfont[AutoFakeBold=false, ItalicFont=FandolKai]{FandolSong}
\setCJKsansfont[AutoFakeBold=false]{FandolHei}
\setCJKmonofont{FandolFang}
\else
\documentclass[hyperref, UTF8, c5size, winfonts]{ctexart} \usepackage[colorlinks,linkcolor=black]{hyperref}
\fi %\documentclass[bachelor,openany,oneside,color]{buaathesis} \usepackage{CJKspace}
\usepackage{CJKutf8}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{cite} \title{\ \\ \ \\ \ \\ \ \\ 我的论文}
\author{\\ \\ 北京航空航天大学计算机学院 \ 黄铎 \\ 学号\ :\ XXXXXXXX \\ \\ 指导教师:XXX} %\date{2016 年 11 月
%sharelatex Version
\usepackage[left=2.4cm,right=2.4cm,top=2.9cm,bottom=2.4cm]{geometry} %texide Version
%\geometry{left=2.4cm,right=2.4cm,top=2.9cm,bottom=2.4cm} \lstset{
numbers=left,
basicstyle=\small,
numberstyle= \small,
keywordstyle= \color{ blue!70},commentstyle=\color{red!50!green!50!blue!50},
frame=shadowbox,
rulesepcolor= \color{ red!20!green!20!blue!20}
} \begin{document} %标题绘制 \includegraphics[scale=0.55]{favicon_large_black.png}
\maketitle
\newpage
\pagestyle{plain} %摘要
\renewcommand{\abstractname}{\LARGE 中文摘要}
\begin{abstract}
\large
XXXX 是 XXXX。
\normalsize
\end{abstract} \textbf{\large 关键词: 词1} \ \\ \ \\ \ \\ \renewcommand{\abstractname}{\LARGE English Abstract}
\begin{abstract}
\large
XXXX is XXXX.
\normalsize
\end{abstract}
\textbf{\large Keywords : kwd1} \clearpage %目录
\tableofcontents
\clearpage %内容
\section{第一章} \newpage %参考文献
\begin{thebibliography}{0} \bibitem{e-wiki}
\text{维基百科, \href{https://en.wikipedia.org/wiki/E\_(mathematical\_constant)}{e(mathematical constant) - Wikipedia}} \bibitem{pi-wiki}
\text{维基百科, \href{https://en.wikipedia.org/wiki/Pi}{pi - Wikipedia}} \end{thebibliography} \newpage
\newpage
\end{document}

【LATEX】个人版latex论文模板的更多相关文章

  1. Window下Latex加速编译方法以及西农毕设论文模板推荐

    近些日子用Latex写了一遍文章,一共有11页,但是在window下编译需要2分多的时间,使用的是xeletex编译器. 经过查找,得到了以下方法: 如果坚持使用windows下的latex,使用以下 ...

  2. 用Latex写IEEE论文

    如果在搞科研,想在IEEE上发表文章,那么就不得不用IEEE的论文模板,分为doc版本和Tex版本.Tex是高德纳·纳什所写,大牛级的任务,写过<计算机程序设计艺术>,曾经是美国最年轻的科 ...

  3. Latex: 添加IEEE论文keywords

    参考: How to use \IEEEkeywords Latex: 添加IEEE论文keywords 方法: \begin{IEEEkeywords} keyword1, keyword2. \e ...

  4. Footnotes for tables in latex - 为latex的table加上footnotes

    参考: Footnotes for tables in LaTeX Footnote in tabular environment Footnotes for tables in latex - 为l ...

  5. 用Latex写学术论文: IEEE Latex模板和文档设置(\documentclass)

    1.可以在博客园中使用latex代码输出公式,以后再以不用复制图片粘贴啦: http://www.cnblogs.com/cmt/p/3279312.html 例如以下代码两边加上 $ 符号后 x(k ...

  6. 用Latex写学术论文:作者(Author)&摘要(Abstract)

    标题&作者 1.标题 \title{} "Line breaks (\\) may be used to equalize the length of the title lines ...

  7. 我的LaTeX中文文档模板

    中文LaTeX处理模板 环境MiTex内核 编辑环境WinEdit 源码如下: \documentclass[a4paper,12pt]{article} \usepackage{CJK} %设定字号 ...

  8. latex 写大论文图目录中图注过长解决方案

    写论文(尤其是学位论文)的时候,Figure通常都是有很长的注释,而Latex的list of figures似乎不能换行(看到有换行的,不过感觉不够美观). 再说,list of figures里面 ...

  9. Latex—IEEE Latex模板 期刊名带下划线的问题解决

    其实期刊名应该是斜体字的,但是有可能默认模板会导致斜体变下划线的问题,解决方法如下 引用包: \usepackage{ulem} %to strike the words 然后再在: \bibliog ...

随机推荐

  1. VMware vSphere学习整理

    知识点整理 内存选择 一般来说,每个虚拟机需要的内存在1~4GB甚至更多,还要为VMware ESXi预留一部分内存 2个6核的2U服务器配置64GB内存,4个6核或8核心的4U服务器配置128GB或 ...

  2. 关于游览器网页标题logo的设置

    <link rel="shortcut icon"type="image/x-icon" href="images/favicon.ico&qu ...

  3. Codeforces Round #430 (Div. 2) D. Vitya and Strange Lesson

    因为抑或,一眼字典树 但是处理起来比较难 #include<iostream> #include<map> #include<iostream> #include& ...

  4. 【POJ2387】Til the Cows Come Home (最短路)

    题面 Bessie is out in the field and wants to get back to the barn to get as much sleep as possible bef ...

  5. linux系统文件系统重要知识介绍

    [root@Asterplus:~]$ls -lhitotal 48K3684713 -rw------- 1 root root 5.9K Jul 1 00:23 anaconda-ks.cfg36 ...

  6. 论文笔记(5):Fully Convolutional Multi-Class Multiple Instance Learning

    这篇论文主要介绍了如何使用图片级标注对像素级分割任务进行训练.想法很简单却达到了比较好的效果.文中所提到的loss比较有启发性. 大体思路: 首先同FCN一样,这个网络只有8层(5层VGG,3层全卷积 ...

  7. 2017angular、vue、react热度

    中国,过去一年: 中国,过去五年: 全球,过去一年: 全球,过去五年: 其他相关: 数据来源自:Google Trends

  8. JavaScript的基本使用

    一.JavaScript的简单介绍 JavaScript是一种属于网络的脚本语言(简称JS),已经被广泛用于Web应用开发,常用来为网页添加各式各样的动态功能,为用户提供更流畅美观的浏览效果.通常Ja ...

  9. 人生苦短,我用python(目录)

    基础 简介 数据类型 文件操作 迭代器和生成器 函数 内置函数 面向对象编程 异常处理 socket网络编程 线程 进程/协程/异步I/O 数据库 Mysql(一) Mysql(二) Mysql(三) ...

  10. c# redis 操作类库推荐:StackExchange.Redis.Extensions

    StackExchange是一个优秀的c# redis客户端,但是存在操作略为繁琐的弊端,为了简化操作,使用 StackExchange.Redis.Extensions成为了一个非常值得推荐的选择. ...