当前位置: 首页 > news >正文

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

文章目录

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

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

1 更改作者显示 Anonymous CVPR submission

这一行开头加上%

\usepackage[review]{cvpr}  

这一行去掉开头%

\usepackage{cvpr} 

2 \label标签

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

\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可以随意取名,比如比较规范的是这样:

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

cvpr2024引用使用

\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处输入图片地址

\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 可以自动填充一定长度的空白。

\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*}

在这里插入图片描述

\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

http://www.lryc.cn/news/185090.html

相关文章:

  • windows版php扩展包下载
  • 计算机竞赛 题目:基于深度学习的中文汉字识别 - 深度学习 卷积神经网络 机器视觉 OCR
  • Django跨域访问 nginx转发 开源浏览器
  • Docker Alist 在线网盘部署
  • Jmeter吞吐量控制器使用小结
  • 3分钟轻松实现网关网口连接罗克韦尔AB CompactLogix系列PLC
  • vscode刷leetcode使用Cookie登录
  • 每次启动Docker容器指定IP、hosts和端口
  • PL/SQL增量同步
  • C++——多态底层原理
  • asdTools-ReID热力图可视化
  • CSS学习笔记
  • linux操作命令
  • 猜数字游戏(Python)
  • 可视化模块
  • MyBatis insert标签
  • 扬尘监测:智能化解决方案让生活更美好
  • 【AI视野·今日NLP 自然语言处理论文速览 第四十五期】Mon, 2 Oct 2023
  • The little schemer 学习
  • yolov5+bytetrack算法在华为NPU上进行端到端开发
  • 【Java-LangChain:使用 ChatGPT API 搭建系统-1】简介
  • BJT晶体管
  • ORACLE中SQL运算符的优先级
  • springboot和vue:十一、Axios网络请求的安装引入与使用、跨域问题解决(CORS)
  • 外汇天眼:真实记录,投资者在盗版MT4平台SCE Group上做交易的经历!
  • FFmpeg 命令:从入门到精通 | ffmpeg 命令视频录制
  • html 笔记:CSS
  • 【LeetCode - 每日一题】901. 股票价格跨度(23.10.07)
  • 第二证券:突发!A股T+0?刚刚,紧急回应!
  • ShardingSphereJDBC5.4.0支持Nacos配置(SpringCloud版)