cvpr24写作模板pdfLaTex编译器注意点小结

文章目录

  • [1 更改作者显示 Anonymous CVPR submission](#1 更改作者显示 Anonymous CVPR submission)
  • [2 \label标签](#2 \label标签)
  • [3 换行符// 与换列符&](#3 换行符// 与换列符&)
  • [4 \medskip](#4 \medskip)
  • [5 首行缩进](#5 首行缩进)
  • [6 插入图片](#6 插入图片)
    • [6.1 单幅图片](#6.1 单幅图片)
    • [6.2 并排显示\hfill](#6.2 并排显示\hfill)
  • Reference

https://cvpr.thecvf.com/Conferences/2024

1 更改作者显示 Anonymous CVPR submission

这一行开头加上%

bash 复制代码
\usepackage[review]{cvpr}  

这一行去掉开头%

bash 复制代码
\usepackage{cvpr} 

2 \label标签

\label可以给一个公式,一个章节,一个图片,一个表格打上标签,然后使用\ref进行引用,不过引用的是一个数字标号。

bash 复制代码
\documentclass{article}

\begin{document}

\begin{equation}\label{newton2}
F=ma
\end{equation}
 
\begin{equation}\label{distance}
s=v_0+\frac{1}{2}at^2
\end{equation}
 
unite the equation (\ref{newton2}),(\ref{distance}),we can conclude that....  
 
\end{document}

lable可以随意取名,比如比较规范的是这样:

bash 复制代码
\label{eq:newton2}%表示公式标签equation
\label{sec:introduction}%表示章节标签section

cvpr2024引用使用

bash 复制代码
\cref{sec:formatting}

3 换行符// 与换列符&

LaTeX常用符号与语法: https://blog.csdn.net/ShadyPi/article/details/83049219

LaTeX公式符号总结(Markdown适用): https://blog.csdn.net/cheng773608490/article/details/124127880

4 \medskip

如果想在段落直接产生一定的间距, 则使用命令

\medskip, \bigskip, 或 \smallskip.

如果要产生垂直方向的空白, 可使用命令

\vspace{ 长度 } 和 \vspace*{ 长度 } , 使用方法同\hspace.

5 首行缩进

\indent:位于段首,指定本段首行缩进
\noindent:位于段首,指定本段首行不缩进

6 插入图片

6.1 单幅图片

画方框

Opt处输入图片地址

bash 复制代码
\begin{figure}[t]
  \centering
   \fbox{\rule{0pt}{2in} \rule{0.9\linewidth}{0pt}}
   %\includegraphics[width=0.8\linewidth]{egfigure.eps}

   \caption{Example of caption.
   It is set in Roman so that mathematics (always set in Roman: $B \sin A = A \sin B$) may be included without an ugly clash.}
   \label{fig:onecol}
\end{figure}

6.2 并排显示\hfill

\hfill 可以自动填充一定长度的空白。

bash 复制代码
\begin{figure*}
  \centering
  \begin{subfigure}{0.68\linewidth}
    \fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}}
    \caption{An example of a subfigure.}
    \label{fig:short-a}
  \end{subfigure}
  \hfill %不加这个就不会有美观的效果!
  \begin{subfigure}{0.28\linewidth}
    \fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}}
    \caption{Another example of a subfigure.}
    \label{fig:short-b}
  \end{subfigure}
  \caption{Example of a short caption, which should be centered.}
  \label{fig:short}
\end{figure*}
bash 复制代码
\begin{figure}[h]
	\begin{minipage}[t]{0.5\linewidth}
		\centering
		\includegraphics[width=0.8\textwidth]{图片地址}
		\caption{your caption \label{yourlabel1}}
	\end{minipage}
	\hfill
	\begin{minipage}[t]{0.5\linewidth}
		\centering
		\includegraphics[width=0.8\textwidth]{图片地址}
		\caption{your X\label{yourlabel2}}
	\end{minipage}
\end{figure}

Reference

https://github.com/cvpr-org/author-kit/releases/tag/CVPR2024-v2

相关推荐
少说多想勤做8 天前
【前沿 热点 顶会】CVPR 2025和目标分类、检测、分割、重识别有关的论文
人工智能·分类·数据挖掘·cvpr·分割·检测·重识别
点云SLAM1 个月前
CVPR 2024 无人机/遥感/卫星图像方向总汇(航空图像和交叉视角定位)
深度学习·计算机视觉·cvpr·遥感·卫星图像·交叉视觉定位
paixiaoxin2 个月前
解读CVPR2024-3DGS论文分享|DNGaussian: Optimizing Sparse-View 3D Gaussian Radiance Fields with .....
人工智能·深度学习·算法·机器学习·3d·cvpr·3dgs
点云SLAM2 个月前
CVPR 2024 人体姿态估计总汇(3D人体、手语翻译和人体网格恢复/重建等)
人工智能·深度学习·计算机视觉·cvpr·姿态估计
点云SLAM2 个月前
CVPR 2024 自动驾驶方向总汇
人工智能·计算机视觉·自动驾驶·slam·cvpr·cvpr 2024·道路检测
是Yu欸3 个月前
【Github】如何使用Git将本地项目上传到Github
人工智能·git·深度学习·github·论文笔记·cvpr
小夏refresh6 个月前
论文阅读笔记:RepViT: Revisiting Mobile CNN From Vit Perspective
论文阅读·笔记·深度学习·计算机视觉·cnn·cvpr
马拉AI7 个月前
CVPR2024 | PromptAD: 仅使用正常样本进行小样本异常检测的学习提示
计算机视觉·cvpr·cv·小样本学习
少说多想勤做8 个月前
【计算机视觉前沿研究 热点 顶会】CVPR 2024中与域适应、分布外目标检测相关的论文
人工智能·目标检测·计算机视觉·论文笔记·cvpr·2024
代码讲故事8 个月前
RAG 工业落地方案框架(Qanything、RAGFlow、FastGPT、智谱RAG)细节比对!CVPR自动驾驶最in挑战赛赛道,全球冠军被算力选手夺走了
人工智能·机器学习·自动驾驶·cvpr·fastgpt·rag·qanything