1.常见字母对应表,这个很全了https://blog.csdn.net/zgj926503/article/details/52757631
记得公式使用对应包以及使用公式的格式
\usepackage{times}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{equation}
I(n,p,\sigma) = \frac{1}{k}(\iint|\nabla^n\rho_\sigma(x,y)|^pdxdy)^{\frac{1}{p}}
\end{equation}
排版出来就是这样的效果:
一般自动标序号,字母、符号之类的查找对应表,$n$, $p$:字母单独表明要用$符号
2.图
\usepackage{graphicx} %插入图片的宏包
\usepackage{float} %设置图片浮动位置的宏包
\usepackage{subfigure} %插入多图时用子图显示的宏包
子图排列
h(此处),t(上方),b(下方),!忽略“美学”标准
% Figure 1
\begin{figure*}[!h]
\centering
\includegraphics[width=1.5in]{soo}
\includegraphics[width=1.5in]{sot}
\includegraphics[width=1.5in]{sos}
\includegraphics[width=1.5in]{sof} \\
(a) Input\\
\includegraphics[width=1.5in]{sto}
\includegraphics[width=1.5in]{stt}
\includegraphics[width=1.5in]{sts}
\includegraphics[width=1.5in]{stf} \\
(b) Output\\
\includegraphics[width=1.5in]{sso}
\includegraphics[width=1.5in]{sst}
\includegraphics[width=1.5in]{sss}
\includegraphics[width=1.5in]{ssf} \\
(c) Our\\
\centering
\caption{\label{fig:firstExample}
Affect.}
\end{figure*}
3.表格 使用这个网址自动生成对应的latex
https://www.tablesgenerator.com/#
表格的暗纹,类似这种不同颜色的效果
\cellcolor{gray!70}
70为颜色的程度
\usepackage[table,xcdraw]{xcolor}
\usepackage{colortbl}
\usepackage{array}
\usepackage{color}
4.参考文献
一种情况是生成bib文件
https://blog.csdn.net/caiandyong/article/details/70258670
或者直接在tex文件最后使用 \bibitem{}格式
\begin{thebibliography}{}
\bibitem{Kay1998PRIMO}
R.~Kay.
\newblock Primo : Probability interpretation of moments for delay calculation.
\newblock {\em IEEE/ACM Proc of Dac}, 1998.
\newblock In {\em International Conference on Image Processing}, 2002.
\end{thebibliography}
Springer批量生成bibitem格式参考文献https://blog.csdn.net/u014435314/article/details/85697292
5.常见问题:
Springer投稿遇见生成的pdf有多个,且部分文档有错,原因在于不要直接上传pdf文件,而是依靠网页自动生成文件
cvpr排版格式已上传cvpr2021版本的latex及word模板