码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 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}  
    
    • 1

    这一行去掉开头%

    \usepackage{cvpr} 
    
    • 1

    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}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    在这里插入图片描述
    lable可以随意取名,比如比较规范的是这样:

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

    cvpr2024引用使用

    \cref{sec:formatting}
    
    • 1

    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}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    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*}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    在这里插入图片描述

    \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}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    Reference

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

  • 相关阅读:
    聊聊 MQTT 和 WebSocket
    XML解析
    0. start-资料记录
    【服务器存储数据恢复】HP-Lefthand存储数据恢复案例
    关于el-date-picker组件修改输入框以及下拉框的样式
    文心一言 VS 讯飞星火 VS chatgpt (112)-- 算法导论10.2 3题
    Android请求网络报错:not permitted by network security policy
    深度学习YOLO抽烟行为检测 - python opencv 计算机竞赛
    C语言程序设计笔记(浙大翁恺版) 第六周:数据类型
    虹科动态 | 8月23日,虹科诚邀您参加上海电子设计创新大会(EDICON Across China 2022上海站)
  • 原文地址:https://blog.csdn.net/JishuFengyang/article/details/133642112
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号