Latex学习记录

论文结构:

\section{} 一级标题

\subsection{} 二级标题

\subsubsetction{} 三级标题

论文符号:

\emph{} 斜体

\bm{} \mathbf{} 加粗

^{}_{} 上下标 例子:\emph{p}$_\emph{q}$ 字母下标

\mathbb{} 花体

\mathscr{N} 花体

\mathcal{X} 花体

 

插入列表:

\begin{enumerate}

\item ***

\item ***

\end{enumerate}

\begin{itemize}

\item ***

\item ***

\end{itemize}

 

插入图片:

\begin{figure}[h]

\centering

\subfigure[1]{\includegraphics[scale=0.3]{1.png}}

%\begin{minipage}[t]{0.45\linewidth} %图片占用一行宽度的45%

\hspace{0.5in}

\subfigure[2]{\includegraphics[width=1cm,height=2cm]{2.png}}

\caption{two.}

%\end{minipage}

\end{figure}

 

插入算法:

\begin{algorithm}[htb] %Begin
\caption{A PDNet Slicing Algorithm} %Title

\begin{algorithmic}[1]
\REQUIRE ~~\\ %Input

\ENSURE ~~\\ %Output

\end{algorithmic}
\end{algorithm}

 

插入表格:

\begin{table}[htbp]
\caption{Experiment Results}
\begin{center}
\begin{tabular}{|c|c|c|c|}

\hline
\textbf{Arc}& \textbf{Expression1} & \textbf{Expression2} & \textbf{Expression3} \\

\hline
f & aaaa & bbbb & ccc \\

\end{tabular}
\label{ER}
\end{center}
\end{table}

posted @ 2020-08-04 15:05  啊哈03  阅读(96)  评论(0)    收藏  举报