论文写作注意点

文章目录

  • 引入
  • 全局类
  • 用词类
  • 公式类
  • 表格类
  • 问题申明类
  • 伪代码类
  • 参考文献类

引入

  本文用于记述本人论文写作中的细小错误,由导师等所指出。贴出以下个人认为很重要的老师语录,希望大家共勉:

  1. 细节都没做好的论文,证明科研训练太差,这个真不是小事!
  2. 每个句子,最好在google 翻译中倒一遍
  3. 不要偷懒!最笨的方法,往往是最省时间的方法!

全局类

  1. 无论什么时候左括号前加一个空格
  2. 注意特指的单词,例如表示章节、表格、图表、伪代码第几行:Section,Fig. (句首时不用缩写)、Table、Line

用词类

  1. 单复数形式虽然简单,但是容易出错,这个要细心,例如Line 1,Lines 1-5,下表则列出可能的错误:
正确 错误
Lines 1-5 Line 1-5
  1. 注意may、maybe、may be的区别;
  2. 注意收集别人的高频词:例如employ和use,意思一样emmm
  3. 注意distance、distance measure、calculate distance的区别,distance表示距离,distance measure表示一种测量方法,而calculate distance是一种动作
  4. 注意basic, key, challenge的用法

公式类

  提醒:数学符号不能乱来哦,有就有,没有就没有!(导师原话,多了个感叹号)

  1. 公式中分情况时,其他写作:\textrm{otherwise.},效果如下: δ i = { max ⁡ ( d i j ) , ρ i = max ⁡ j ∈ [ 1.. N ] ( ρ j ) ; min ⁡ j ∈ [ 1.. N ] : ρ j > ρ i ( d i j ) , otherwise. \delta_i = \begin{cases} \max{ (d_{ij} )}, \rho_i = \max \limits_{j \in [1..N]} (\rho_j);\\ \min \limits_{j \in [1..N]: \rho_j> \rho_i} (d_{ij}), \textrm{otherwise.}\\ \end{cases} δi=max(dij),ρi=j[1..N]max(ρj);j[1..N]:ρj>ρimin(dij),otherwise.
  2. max、min等前加\,即\max,\min,例如 max ⁡ min ⁡ \max \min maxmin m a x   m i n max\ min max min
  3. $i$-th 不是$i-$th,即: i i i-th和 i − i- ith
  4. 一个数值到底是怎样计算的要弄清楚:例如 n = ⌊ μ ∗ N ⌋ n = \lfloor \mu * N \rfloor n=μN表示取整,但是 n = μ ∗ N n = \mu * N n=μN就不是
  5. 引用多个公式时要用Eqs. :例如Eqs. (1) (2) (3)
  6. 如果用一个单词表示向量,不要写成 b i a s \mathbf{bias} bias,而是写成bias B \mathbf{B} B的形式
  7. 公式里面的括号使用\left (和\right),这样括号可以跟随公式进行变化,当然花括号等方法类似 (CSDN中体现不出(#^.^#)): ρ i = ∑ j ≠ i e − ( d i j d c ) 2 . \rho_i = \sum_{j \neq i} e^{- \left ( \frac{d_{ij}}{d_c}\right)^2}. ρi=j=ie(dcdij)2.

表格类

  1. 表格的宽度应设置为同样,语句为\renewcommand\tabcolsep{0.04\textwidth},数值需要自行调整,且语句为\begin{tabular}之前
  2. \multirow{4}*{Elephant}可以列居中

问题申明类

  1. 申明写法示例1,注意每一句结尾处均有一个“.”:论文写作注意点_第1张图片
  2. 待续。。。

伪代码类

  1. for (i ∈ \in [1…n]) do 要写括号
  2. 语句注意先后顺序:例如 c i = arg ⁡ max ⁡ λ i , λ i = ρ i ∗ δ i c_i = \arg \max \lambda_i, \lambda_i = \rho_i * \delta_i ci=argmaxλi,λi=ρiδi这样是不对的
  3. 公式里不能引用其他式子:例如 λ i = ρ i ( 1 ) ∗ δ i ( 2 ) \lambda_i = \rho_i (1) * \delta_i (2) λi=ρi(1)δi(2)
  4. if语句里的等号要写成: i f ( c = = 2 ) if (c == 2) if(c==2),而不是 i f ( c = 2 ) if (c = 2) if(c=2)

参考文献类

  1. bib中的信息要尽可能的保留,包括网址等,例如:
@article{Dietterich1997Solving,
  author 		= 		{Thomas G. Dietterich and Richard H. Lathrop and Tom{\'a}s Lozano-P{\'e}rez},
  title 	 	= 		{Solving the multiple instance problem with axis-parallel rectangles},
  journal 		= 		{Artificial Intelligence},
  year 			= 		{1997},
  pages 		= 		{31--71},
  volume 		= 		{89},
  number 		= 		{1},
  doi 			= 		{https://doi.org/10.1016/S0004-3702(96)00034-3},
  url 			= 		{http://www.sciencedirect.com/science/article/pii/S0004370296000343}
  issn 			= 		{0004-3702},
}
  1. “:”后的第一个单词首字母也要大写,书名这种只需保留 ”{FUZZ-IEEE}“,而不是 “{2016 {IEEE} International Conference on Fuzzy Systems ({FUZZ-IEEE})}”:
@inproceedings{Villar2016Fuzzy,
  author 		=        {Pedro Villar and Rosana Montes and Ana Mar{\'i}a S{\'a}nchez and Francisco Herrera},
  title 	    =        {Fuzzy-citation-{KNN}: {A} fuzzy nearest neighbor approach for multi-instance classification},
  booktitle 	=        {{FUZZ-IEEE}},
  year 			=        {2016},
  month 		=        {July}
  pages 		=        {946--952},
  doi 			=        {10.1109/FUZZ-IEEE.2016.7737790}
}
  1. 下表中列出易错点:
位置 情况
缩写 例如:Dietterich1997Solving,格式为第一作者姓氏+年份+标题首单词 (An a等除外)
author 每个单词首字母大写,按照名、姓的顺序,以and连接
且注意特殊字符的表示
中文名例如:Gou-Dan Li 和 Gou Dan Li, 注意作者偏好
title 句首字母大写 / 冒号后首字母大写且括起来,大写的缩写用{}括起来,例如 {MIKI}
出现的数字用“$$”括起来
journal / booktitle 每个首字母大写,且不能略写,强制大写的缩写用{}括起来,例如{IEEE}
应避免年份和year重复
pages 中间用-- 连接
issn 中间用-连接
其他 等号对齐,最后一项末尾不需要“,”
一个参考文献内的条目按照一定顺序组织起来,例如author、title、journal

  这样做的原因是对应的期刊有相应的模板,我们只需按照一种bib标准书写。

你可能感兴趣的:(论文写作)