赞
踩
加入交流群,请添加小助手wx:FightngCV666
来源:https://github.com/MLNLP-World/Paper-Writing-Tips
很多初学者同学在投稿的时候经常会出现一些共有的小错误,为了节省大家的时间和帮助大家能够尽快的定位一些小的问题。本项目总结了我们在自己投稿过程中的经验和一些身边老师同学的投稿经验,希望能对大家有所帮助,由于我们的水平有限,如有疏漏,还望谅解。谢谢大家。
本项目的特色:
写前必看:包含一些常见的错误,每个错误均配有例子,可以在动手写论文之前快速浏览。 终稿必查:包含一些例子,方便快速定位是否自己的论文有错误。 百家之言:整理了一些网络上公开的写作资源(并不完全,欢迎补充),方便大家系统学习。
下文中,标注"Attention"的内容,是目前组织者认为有(较为)明显争议的建议条目。
don't
拆开写成
do not
s
's
尽量转化为
of
e.g.,
表示
for example,
i.e.,
表示
that is,
et al.
表示
and others of the same kind,
etc.
表示
and others,
,不用于列举人
et al.
或
etc.
在句末时,不用再添加额外的句号
键位如图所示,使用 `` 和 '' 分别表示左右引号,而不是其他符号或任何中文引号。
使用 ~
表示不间断空格,不间断空格不会导致意外的换行,例如:
Figure~\ref{} shows the model performance.
Table~\ref{} shows dataset details.
We use BERT~\cite{bert} model.
Section~\ref{} concludes this paper.
使用 \url{}
命令,需要导入包:
\usepackage{hyperref}
引用的表述考虑使用斜体 \textit{}
而不是引号。
公式中的 softmax
,proj
,enc
等超过一个字母的变量或符号,使用正文字体,即使用 \textrm
或 \textit
命令。
许多函数和符号有现成的命令,例如:\arg{}
,\max{}
,\sin{}
,\tanh{}
,\inf
, \det{}
, \exp{}
.
如 \left(\right), \left{\right}, \left<\right>, \left|\right|等。
括号中的分割通过\middle实现。
Latex代码如下:
\begin{gather}
\bold{s} = \left(\sum_{i=0}^{N-1}{\alpha_{i} \bold{h}_i}\right) + \bold{h}_N\\
\bold{s} = (\sum_{i=0}^{N-1}{\alpha_{i} \bold{h}_i}) + \bold{h}_N \\
\end{gather}
\begin{gather}
\left\{ x \middle| x\ne\frac{1}{2}\right\} \\
\{ x | x\ne\frac{1}{2}\}
\end{gather}
使用 align 表示一组公式,等号对齐。
Latex代码如下:
\begin{gather}
E = m c^2 \\
C = B \log_2\left(1+\frac{S}{N}\right)
\end{gather}
\begin{align}
E &= m c^2 \\
C &= B \log_2\left(1+\frac{S}{N}\right)
\end{align}
推荐:只对refer的公式加编号,\nonumber去编号。
Latex代码如下:
\begin{equation}
E = m c^2
\end{equation}
\begin{equation}
E = m c^2 \nonumber
\end{equation}
绘制表格时,使用 \usepackage{booktabs},从而借助 \toprule, \bottomrule, \midrule, \cmidrule 命令,画出好看的分隔线。
Latex代码如下:
% Example of a table with booktabs from https://nhigham.com/2019/11/19/better-latex-tables-with-booktabs/. % First version of table. \begin{table}[htbp] \centering \begin{tabular}{|l|c|c|c|c|c|l|} \hline & \multicolumn{3}{c|}{E} & \multicolumn{3}{c|}{F}\\ \hline & $mv$ & Rel.~err & Time & $mv$ & Rel.~err & Time \\\hline A & 11034 & 1.3e-7 & 3.9 & 15846 & 2.7e-11 & 5.6 \\ B & 21952 & 1.3e-7 & 6.2 & 31516 & 2.7e-11 & 8.8 \\ C & 15883 & 5.2e-8 & 7.1 & 32023 & 1.1e-11 & 1.4 \\ D & 11180 & 8.0e-9 & 4.3 & 17348 & 1.5e-11 & 6.6 \\ \hline \end{tabular} \caption{Without booktabs.} \label{tab:without-booktabs} \end{table} % Second version of table, with booktabs. \begin{table}[htbp] \centering \begin{tabular}{lcccccl}\toprule & \multicolumn{3}{c}{E} & \multicolumn{3}{c}{F} \\\cmidrule(lr){2-4}\cmidrule(lr){5-7} & $mv$ & Rel.~err & Time & $mv$ & Rel.~err & Time\\\midrule A & 11034 & 1.3e-7 & 3.9 & 15846 & 2.7e-11 & 5.6 \\ B & 21952 & 1.3e-7 & 6.2 & 31516 & 2.7e-11 & 8.8 \\ C & 15883 & 5.2e-8 & 7.1 & 32023 & 1.1e-11 & 1.4\\ D & 11180 & 8.0e-9 & 4.3 & 17348 & 1.5e-11 & 6.6 \\\bottomrule \end{tabular} \caption{With booktabs.} \label{tab:with-booktabs} \end{table}
以better举例,也就是当表示一个事物更好时,不能仅仅说它更好,需要给出相应的解释与理由
提出的方法到底改善了哪里,是什么导致的这个结果?
\looseness=-1
,有时可以在不删除最后一行的情况下,将最后一行的个别单词“挤上去”。
\usepackage[english]{babel}
引用在文字外(parent),使用 \cite。
引用在文字内(within text)
效果:(Zhang et al. 2020) vs. Zhang et al. (2020)
已建立深度学习公众号——FightingCV,欢迎大家关注!!!
ICCV、CVPR、NeurIPS、ICML论文解析汇总:https://github.com/xmu-xiaoma666/FightingCV-Paper-Reading
面向小白的Attention、重参数、MLP、卷积核心代码学习:https://github.com/xmu-xiaoma666/External-Attention-pytorch
加入交流群,请添加小助手wx:FightngCV666
本文由 mdnice 多平台发布
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。