Latex笔记-写论文常用语法

写论文要用的语法。

  1. 标题,姓名

为文档指定了标题、作者和日期之后,可以使用\maketitle命令在文档上打印这些信息,包含在文档正文中要打印标题的位置。

\documentclass[12pt, letterpaper, twoside]{article}
\usepackage[utf8]{inputenc}
\title{title}
\author{author}}
\date{data}

\begin{document}

\maketitle

...

\end{document}
  1. 章节

章节最好单开一个文档,然后使用\include{}添加到主文件里。

% 主文件里
\include{chapter1}

% chapter1.tex
\chapter{Introduction} \label{Introduction}
...
\section{Motivation} \label{Motivation}
...
  1. 数学公式

行内公式:

\( equation\)
$equation$

单行显示的公式:

\[ equation\]

\begin{equation} \label{eq}
...
\end{equation}
  1. 图片与表格
\usepackage{graphicx}
\graphicspath{ {./images/} }

% 单张图片
\begin{figure}[htpb]
    \centering
    \includegraphics[scale=1]{images/image.png}
    \caption[Short caption]{Long caption}
    \label{fig:image}
\end{figure}

%多张图片
\begin{figure}[htpb]
    \centering
    \begin{subfigure}[b]{0.4\textwidth}
        \includegraphics[width=\textwidth]{images/origin.jpg}
        \caption{}
        \label{fig:origin}
    \end{subfigure}
    \hfill
    \begin{subfigure}[b]{0.4\textwidth}
        \includegraphics[width=\textwidth]{images/transformed.jpg}
        \caption{}
        \label{fig:transformed}
    \end{subfigure}
   
    \caption[Short caption]{Long caption}
    \label{fig:subs}
\end{figure}

%表格
\begin{center}
 \begin{tabular}{c |c| c| c} 
 \hline
 Col1 & Col2 & Col2 & Col3 \\ [0.5ex] 
 \hline\hline
 1 & 6 & 87 & 787 \\ 
 \hline
 2 & 7 & 78 & 5415 \\
 \hline
 3 & 545 & 778 & 7507 \\
 \hline
\end{tabular}
\table{tab:table}
\end{center}
  1. 引用和跳转

注意到上面的例子里都有\label{},这就是用来引用的,比如\ref{fig:image},会得到 图像2.2 这样的引用,这个编号会自动变化,不需要手动修改。

  1. 目录

会根据标题自动生成目录。

\tableofcontents
  1. 图片列表
    如果想要生成全文中所出现的图片或者表格的列表
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures

\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
  1. 参考文献
    参考文献的格式一般在谷歌学术上就有,引用的时候使用\cite{}。
% 引用格式
@inproceedings{Bamford98:ITR,
   author    = {Bamford, P.  and Lovell, B.},
   title     = {Improving the robustness of cell nucleus segmentation},
   booktitle = {Proceedings of the Ninth British Machine Vision Conference},
   address   = {Southampton, UK.},
   year      = {1998},
   note      = {http://citeseer.nj.nec.com/bamford98improving.html}
}

% 引用
\cite{Bamford98:ITR}

% 生成引用列表
\addcontentsline{toc}{chapter}{\bibname}
\bibliography{mt}
  1. 遇到的问题

生成目录的时候如果出现了重复的目录,可能是因为重复调用了库,去掉重复的库就好了。

你可能感兴趣的:(Latex笔记-写论文常用语法)