freealong / thesis

Master Thesis for 3D Object Detection and Pose Estimation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tongji Thesis - 同济大学论文模板

版本说明

  • 模板最初由Tongji LUG创作,2014年的RC2版本之后似乎已停止维护。此版本融合了wildwolf、svandexzhao-chen的部分修改。

使用说明

参考文献

@Book{companion,
	author    = "Michel Goosens and Frank Mittelbach and Alexander Samarin",
	title     = "The {\LaTeX} Companion",
	publisher = "Addison-Wesley Publishing Company",
	address   = "Reading, MA",
	PAGES = "112--125",
	year      = 1994,
}

@PhdThesis{shaheshang,
  	author  = {沙和尚 and 孙悟空 and 唐僧},
  	title   = {论流沙河的综合治理},
	school  = {清华大学},
	year    = {2005},
	address = {北京},
	lang    = {zh},
	pinyin  = {shaheshang}
}

效果一

  • 代码:英文引用\cite{companion},中文引用\cite{shaheshang}

  • 效果:英文引用 (Goosens et al. 1994),中文引用 (沙和尚 等 2005)

效果二

  • 代码:英文引用(Goosens等, \citeyear{companion}),中文引用(沙和尚等, \citeyear{shaheshang})

  • 效果:英文引用 (Goosens 等, 1994),中文引用 (沙和尚等, 2005)

效果三

  • 代码:Goosens等\citeyearpar{companion},沙和尚等\citeyearpar{shaheshang}

  • 效果:Goosens 等 (1994),沙和尚等 (2005)

注意

  • 中文文献应该添加langpinyin域,lang用于分离中英文文献,默认为英文;pinyin用于中文文献排序。

添加公式

公式编辑可使用mathtype,将编辑好的公式直接拷贝到latex的文件

\begin{equation}
	E = m c^2
\end{equation}

添加图

效果一

\begin{figure}[!h]
	\centering
	\includegraphics[width=0.5\textwidth]{chap1/testImag.jpg}
	\caption{独平高速公路梭草坡隧道掌子面及局部放大图}
	\label{fig:testImag}
\end{figure}	

效果二

\begin{figure}[!h] 
	\centering 
	\begin{tabular}{cc} 
		\includegraphics[width=6cm]{tongji-whole-logo.eps} & \includegraphics[width=6cm]{tongji-whole-logo.eps}\\ 
		(a)图1 & (b)图2
	\end{tabular} 
	\caption{同济大学} 
	\label{fig:subimage} 
\end{figure}

效果三

\begin{figure}[!h] 
	\noindent 
	\begin{minipage}[t]{.48\linewidth} 
		\centering 
			\includegraphics[width=6cm]{tongji-whole-logo.eps} 
		\caption{图1} 
		\label{fig:quadratic} 
	\end{minipage} 
	\begin{minipage}[t]{.48\linewidth} 
		\centering 
		\includegraphics[width=6cm]{tongji-whole-logo.eps} 
			\caption{图2} 
		\label{fig:triorder} 
	\end{minipage} 
\end{figure}

添加表

表格编辑可使用excel2latex

较好的效果

\begin{table}[!htb]
  	\centering
  	\caption{Add caption}
  	\label{tab:events}
    \begin{tabular}{?c"c?}
	    \thickhline
	    a     & b \bigstrut\\
	    \thinhline
		第一列   & 第二列 \bigstrut\\
	    \thinhline
	    第一列   & 第二列 \bigstrut\\
	    \thinhline
	    第一列   & 第二列 \bigstrut\\
	    \thickhline
    \end{tabular}%
  \label{tab:addlabel}
\end{table}

注意

  • 未完全测试,尽量使用UTF-8文件编码,xelatex编译,以免出现意外问题。
  • 模板使用了TeXlive默认的Fandol中文字体(Bold支持较好)。如需使用Adobe或其他字体,可自行在cls文件中修改。
  • 暂未包含书脊,实在需要可用原版(用旧版的CTeX包,pdflatex编译,小心GBK文件编码……)。
  • 已知问题:
    • xelatex编译速度比pdflatex慢,需要耐心等待。
    • 用TeXStudio可能编译时会跳出对话框,提示“日志文件很大,确认载入?”,选择“是”即可照样继续
    • 推荐使用Sublime Text + LaTeXTools,常用快捷键:由Latex查找PDF:ctrl+L(松开接)J;清理临时文件:ctrl+L(松开接)Backspace
  • 若有其他问题,欢迎指正或留言讨论。

About

Master Thesis for 3D Object Detection and Pose Estimation

License:MIT License


Languages

Language:TeX 99.9%Language:Makefile 0.1%