-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge overleaf-2024-09-13-1721 into main
- Loading branch information
Showing
9 changed files
with
130 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
\maketitle | ||
\input{sec/0_abstract} | ||
\input{sec/1_intro} | ||
\input{sec/2_formatting} | ||
\input{sec/3_finalcopy} | ||
{ | ||
\small | ||
\bibliographystyle{ieeenat_fullname} | ||
\bibliography{main.bib} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
\clearpage | ||
\maketitleagain{Supplementary Material} | ||
|
||
The supplementary can be compiled together with the main paper, therefore: | ||
% | ||
\begin{itemize} | ||
\item The supplementary can back-reference sections of the main paper, for example, we can refer to \cref{sec:intro}; | ||
\item The main paper can forward reference sub-sections within the supplementary explicitly (e.g. referring to a particular experiment); | ||
\item When submitted to arXiv, the supplementary will already included at the end of the paper. | ||
\item To submit the supplementary, use the \verb|\includeonly{| command to avoid typesetting the paper itself. | ||
\item You can also add citations that you may have missed~\cite{Alpher2005}. | ||
\end{itemize} | ||
|
||
{ | ||
\small | ||
\bibliographystyle{ieeenat_fullname} | ||
\bibliography{main.bib} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,21 @@ | ||
% CVPR 2025 Paper Template; see https://github.com/cvpr-org/author-kit | ||
|
||
\documentclass[10pt,twocolumn,letterpaper]{article} | ||
|
||
%%%%%%%%% PAPER TYPE - PLEASE UPDATE FOR FINAL VERSION | ||
% \usepackage{cvpr} % To produce the CAMERA-READY version | ||
\usepackage[review]{cvpr} % To produce the REVIEW version | ||
% \usepackage[pagenumbers]{cvpr} % To force page numbers, e.g. for an arXiv version | ||
\usepackage[review]{cvpr} % For the REVIEW version | ||
% \usepackage[pagenumbers]{cvpr} % For the arXiv version | ||
% \usepackage{cvpr} % For the CAMERA-READY version | ||
|
||
% Import additional packages in the preamble file, before hyperref | ||
%%%%%%%%% Import additional packages in the preamble file | ||
\input{preamble} | ||
|
||
% It is strongly recommended to use hyperref, especially for the review version. | ||
% hyperref with option pagebackref eases the reviewers' job. | ||
% Please disable hyperref *only* if you encounter grave issues, | ||
% e.g. with the file validation for the camera-ready version. | ||
% | ||
% If you comment hyperref and then uncomment it, you should delete *.aux before re-running LaTeX. | ||
% (Or just hit 'q' on the first LaTeX run, let it finish, and you should be clear). | ||
\definecolor{cvprblue}{rgb}{0.21,0.49,0.74} | ||
\usepackage[pagebackref,breaklinks,colorlinks,allcolors=cvprblue]{hyperref} | ||
|
||
%%%%%%%%% PAPER ID - PLEASE UPDATE | ||
\def\paperID{*****} % *** Enter the Paper ID here | ||
\def\confName{CVPR} | ||
\def\confYear{2025} | ||
|
||
%%%%%%%%% TITLE - PLEASE UPDATE | ||
\title{\LaTeX\ Author Guidelines for \confName~Proceedings} | ||
\title{\LaTeX\ Author Guidelines for \confName~\confYear~Proceedings} | ||
|
||
%%%%%%%%% AUTHORS - PLEASE UPDATE | ||
\author{First Author\\ | ||
|
@@ -45,19 +34,13 @@ | |
{\tt\small [email protected]} | ||
} | ||
|
||
\begin{document} | ||
\maketitle | ||
\input{sec/0_abstract} | ||
\input{sec/1_intro} | ||
\input{sec/2_formatting} | ||
\input{sec/3_finalcopy} | ||
{ | ||
\small | ||
\bibliographystyle{ieeenat_fullname} | ||
\bibliography{main} | ||
} | ||
|
||
% WARNING: do not forget to delete the supplementary pages from your submission | ||
% \input{sec/X_suppl} | ||
%%%%%%%%% SELECT WHAT TO TYPESET - SELECT ONE | ||
\includeonly{_paper} | ||
% \includeonly{_supplementary} | ||
% \includeonly{_rebuttal} | ||
|
||
\begin{document} | ||
\include{_paper} | ||
\include{_supplementary} | ||
\include{_rebuttal} | ||
\end{document} |
Oops, something went wrong.