overleaf 常用命令

ctrl+b  加粗
ctrl+i  斜体
\emph  斜体,强调

行内公式

$ a = b +c $

行间公式

\begin{equation}
    a=b_c+d
\end{equation}   

交叉引用

1.引入宏包

\usepackage[colorlinks]{hyperref}

2.\label


\subsection{related wok}\label{sec:related work}
this is related work.

\section{method}\label{sec:method}
this is method

3.\ref

there will be more introduction in section \ref{sec:method} and section \ref{sec:related work} 

插入图片

1.引入宏包

\usepackage{graphicx} 

2.命令\begin{figure}

\begin{figure}
    \centering
    \includegraphics[width=10cm]{base.jpg}
    \caption{Caption}
    \label{fig:enter-label}
\end{figure}

表格

& 下一列

\\ 下一行

| 竖线

\hline  横线

c  l  r  中左右

\centering  表格居中

\begin{tabular}{l|l|ll}
1 & 2 &  &  \\
  &   &  &  \\
  &   &  &  \\
  &   &  & 
\end{tabular}

overleaf 常用命令_第1张图片

参考文献

.bib文件

\bibliographystyle{unsrt}
\bibliography{文件名}

正文处用cite

 

你可能感兴趣的:(overleaf)