在标题和正文之间以两栏形式输入一个数字

在标题和正文之间以两栏形式输入一个数字

我正在使用 LaTeX 使用 CVPR 模板撰写一篇小论文。

我想像许多 CVPR 论文一样在标题+名称和正文(由两列组成)之间放置一个图形,但我找不到这样做的方法。

我试过:

\begin{figure*}
\begin{center}
\fbox{\rule{0pt}{2in} \rule{.9\linewidth}{0pt}}
\end{center}
   \caption{some caption..}
\label{fig:short}
\end{figure*}

但结果发现,figure-star 只在下一个页面,当我仅使用类似图形时\begin{figure}[htb],它仅位于这两列中的一列。

有人知道如何在我的标题+姓名和正文之间放置一个长数字吗?

答案1

标题也设置为双列格式,您不能将两个标题放在一行中。您需要将标题和(非浮动)图形放在一个\twocolumn[{..}]宏中。问题是\maketitle已经使用了\twocolumn,但这实际上可以重新定义为非操作。

这类似于我的解决方案使用 'center' 环境跨越列。我再次在这里发布它,因为它的风格不同,许多初学者在将另一篇文章改编为 CVPR 时会遇到问题。

我想说的是,在标题下方直接放一个图可能不是一个好的风格。

\documentclass[twocolumn]{article}
\usepackage{cvpr}
\usepackage{blindtext}% for dummy text only
\usepackage{graphicx}
\usepackage{caption}
\def\cvprPaperID{}% Remove and set correct ID

\title{Test}
\author{A. Tester}
\begin{document}
\twocolumn[{%
\renewcommand\twocolumn[1][]{#1}%
\maketitle
\begin{center}
    \centering
    \captionsetup{type=figure}
    \includegraphics[width=.8\textwidth,height=5cm]{example-image}
    \captionof{figure}{Test caption}
\end{center}%
}]

\Blindtext% Replace with your real text

\end{document}

结果

答案2

由于这个问题在搜索结果中排名很高,而且这可能正是 SIGCHI 模板用户正在寻找的东西,所以这里有一个适用于 SIGCHI 模板的选项。(http://www.sigchi.org/publications/chipubform/sigchi-papers-latex-template/view

\teaser{
\centering
\subfloat[Subfigure caption A\label{subfig:fig4a}]{
    \includegraphics[width=0.3\textwidth, height=0.15\textwidth]{FigSub4a} %standard image inclusion call
}   ~
\subfloat[Subfigure caption B\label{subfig:fig4b}]{
    \includegraphics[width=0.3\textwidth, height=0.15\textwidth]{FigSub4b}
}   ~
\subfloat[Subfigure caption C\label{subfig:fig4c}]{
    \includegraphics[width=0.3\textwidth, height=0.15\textwidth]{FigSub4b}
}
\caption{Teaser pic}
\label{fig:figure3}
}

这仅因为 sigchi.cls 文件内有以下文本才有效:

% [jdf] create a \teaser command for adding a figure in title page
\newcommand{\chi@empty}{}
\newcommand{\chi@teaser}{}
\newcommand{\teaser}[1]{\renewcommand{\chi@teaser}{#1}}

\newlength{\teaserspace}
\setlength{\teaserspace}{0.25in}
%  [jdf] end teaser

我只能推测 [jdf] = Jean-Daniel Fetke,他于 2011 年 8 月 28 日编辑了此模板。

答案3

对于 CVPR \twocolumn 作品

IEEE ICRA IROS 模板没有

下面的代码适用于我的 IEEE 会议模板

% 在制作标题后插入此内容

\begin{strip}
\begin{minipage}{\textwidth}\centering
\vspace{-100pt}
\includegraphics[width=0.95\textwidth]{image/figure1_2un.pdf}
\captionof{figure}{this is your captions.}
\label{figurelabel}
\end{minipage}
\end{strip}


\begin{abstract}

在此处输入图片描述

相关内容