Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to change twocolumn to onecolumn in the supplementary? #13

Closed
YuanShunJie1 opened this issue Feb 14, 2025 · 1 comment
Closed

How to change twocolumn to onecolumn in the supplementary? #13

YuanShunJie1 opened this issue Feb 14, 2025 · 1 comment

Comments

@YuanShunJie1
Copy link

In the supplementary materials, the two-column layout looks a bit cramped, and I would like to change it to a single-column layout. I tried changing \documentclass[10pt,twocolumn,letterpaper]{article} to \documentclass[10pt,onecolumn,letterpaper]{article}, but it didn't work. Could you please advise me on how to modify it? Thank you very much!

@apoorvkh
Copy link
Owner

This is actually hardcoded in the cvpr.sty file. But if you want to do this, you could add

\let\titleold\title
\renewcommand{\title}[1]{\titleold{#1}\newcommand{\thetitle}{#1}}
\def\maketitlesupplementary
   {
   \newpage
   \centering
   \Large
   \textbf{\thetitle}\\
   \vspace{0.5em}Supplementary Material \\
   \vspace{1.0em}
   }

before the \maketitlesupplementary line in _supplementary.tex.

[This modifies the \maketitlesupplementary definition from here.]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants