Overleaf常用代码总结

特殊符号

对勾 \checkmark
箭头 \rightarrow

特殊标注

\textbf{}
\textit{}或者\emph{}
\underline{}

引用

  • 引用文献\cite{}
  • 引用表格图片\ref{}

插入图片

  • 半边栏
\begin{figure}[t]
\centering
\includegraphics[width=0.47\textwidth]
{AnonymousSubmission/LaTeX/result_compare.pdf} 
\caption{xxxx.}
\label{resultcompare}
\end{figure}
  • 双边栏
\begin{figure*}[t]
\centering
\includegraphics[width=1\textwidth]{AnonymousSubmission/LaTeX/Key_figure2.pdf} 
\caption{xxxxxxxxx.}
\label{key_figure}
\end{figure*}

插入表格

  • 半边栏
\begin{table}[h]
  \centering
  \resizebox{0.47\textwidth}{!}{%
    \begin{tabular}{lccccccc}
      \toprule
      & \Large V101 & \Large V102 & \Large V103 & \Large V201 & \Large V202 & \Large V203 & \Large Avg \\
      \midrule
      \Large ORB-SLAM3 & \Large \textbf{0.035} & \Large 0.139 & \Large 0.713 & \Large 1.352 & \Large \underline{0.056} & \Large 0.632 & \Large 0.487 \\
      \Large DSO & \Large 0.089 & \Large \underline{0.107} & \Large 0.903 & \Large \textbf{0.044} & \Large 0.132 & \Large 1.152 & \Large 0.404 \\
      % SVO & \Large 0.070 & \Large 0.210 & x & \Large 0.110 & \Large 0.110 & \Large 1.080 & - \\
      \midrule
      \Large DeepV2d & \Large 0.717 & \Large 0.695 & \Large 1.483 & \Large 0.839 & \Large 1.052 & \Large 0.591 & \Large 1.173 \\
      \Large TartanVO & \Large 0.447 & \Large 0.389 & \Large 0.622 & \Large 0.433 & \Large 0.749 & \Large 1.152 & \Large 0.632 \\
      \Large DROID-VO & \Large 0.103 & \Large 0.165 & \Large 0.158 & \Large 0.102 & \Large 0.115 & \Large \textbf{0.204} & \Large 0.141 \\
      \Large DPVO & \Large \underline{0.050} & \Large 0.148 & \Large \underline{0.093} & \Large 0.086 & \Large \textbf{0.049} & \Large 0.282 & \Large \underline{0.118} \\
      \Large STVO(Ours) & \Large 0.055 & \Large \textbf{0.098} & \Large \textbf{0.078} & \Large \underline{0.064} & \Large 0.125 & \Large \underline{0.248} & \Large \textbf{0.111} \\
      \bottomrule
    \end{tabular}%
  }
  \caption{Performance comparisons on EuRoC dataset. }
  \label{table_EuRoC}
\end{table}
  • 双边栏
\begin{table*}[h]
  \centering
  \begin{tabular}{lccccccccccc}
    \toprule
    & 360 & desk & desk2 & floor & plant & room & rpy & teddy & xyz & Avg\\
    \midrule
    ORB-SLAM3 & - & \textbf{0.017} & 0.210 & - & 0.034 & - & - & - & \textbf{0.009} & - \\
    DSO & 0.173 & 0.567 & 0.916 & 0.080 & 0.121 & 0.379 & 0.058 & - & 0.036 & - \\
    \midrule
    DeepV2d & \textbf{0.144} & 0.105 & 0.321 & 0.628 & 0.217 & \textbf{0.215} & 0.046 & 0.294 & 0.051 & 0.225 \\
    TartanVO & 0.178 & 0.125 & 0.122 & 0.349 & 0.297 & 0.333 & 0.049 & 0.339 & 0.062 & 0.206\\
    DROID-VO & \underline{0.161} & \underline{0.028} & 0.099 & \textbf{0.033} & \underline{0.028} & 0.327 & \underline{0.028} & 0.169 & 0.013 & 0.098\\
    DPVO & 0.165 & 0.034 & \textbf{0.042} & 0.050 & 0.036 & 0.388 & 0.034 & \textbf{0.057} & \underline{0.012} & \underline{0.091} \\
    STVO(Ours) & 0.171 & 0.031 & \underline{0.068} & \underline{0.035} & \textbf{0.027} & \underline{0.242} & \textbf{0.027} & \underline{0.111} & 0.015 & \textbf{0.080} \\
    \bottomrule
  \end{tabular}
\caption{xxxxx.}
\label{table_tum}
\end{table*}

插入编号

\begin{itemize}
\item xxxx1

\item xxxx2

\item xxxx3

段落层级

\section{}
\subsection{}
\subsubsection{}

公式

  • 单行公式
\begin{equation}
{T}^{\ast },{d}^{\ast }=\arg \min _{T, d}\sum_{(i, j) \in \mathcal{E}}\left\|\hat{P}_{i j}-\tilde{P}_{i j}\right\|_{\Sigma_{i j}}^2 
\end{equation}
  • 多行公式
\begin{equation}
\begin{aligned}
{M}^{k}_{m \rightarrow n}=\operatorname{Warp}({m}^{k}_{m};{f}^{k}_{m \rightarrow n}),
\\
{M}^{k}_{T}=\operatorname{Concat}({m}^{k}_{m},{M}^{k}_{m \rightarrow n},{m}^{k}_{n})
\label{eq2}
\end{aligned}
\end{equation}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 前端开发面试知识点大纲: HTML&CSS: 对Web标准的理解、浏览器内核差异、兼容性、hack、CSS基本功:...
    秀才JaneBook阅读 2,439评论 0 25
  • 解读上一篇文章(2)LaTeX论文排版——总体框架[https://www.jianshu.com/p/0aaee...
    5john家安阅读 5,857评论 0 11
  • 兼容性:HTML5在老版本的浏览器上也可以正常运行 实用性:HTML5内部并没有特别复杂的功能,它只封装了那些常用...
    舌尖上的苏东坡阅读 2,582评论 0 0
  • HTML 选择什么元素取决于内容的含义而不是显示的效果 语义化 为了搜索引擎优化(SEO) 为了让浏览器理解网页:...
    木子川页心阅读 424评论 0 0
  • 1 培训 做课题的一般进程就是建模型,解模型,写论文这三步。所以从这三个方面去培训是最有效的,因此个人认为最有效提...
    MC_Dream阅读 1,386评论 0 3