我正在使用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*}
但事实证明,星球只显示了 next 页面顶部的数字,
当我只使用像\begin{figure}[htb]
之类的数字时,它只能找到这两列中的一列。
有谁知道如何在我的标题+名称和身体背景之间加上长长的数字? 感谢。
答案 0 :(得分:3)
您没有提及在标题中插入日期的任何内容。那么,为什么不使用日期来存储您的图像:
\documentclass[twocolumn]{article}
\usepackage{mwe}% http://ctan.org/pkg/mwe
\title{My Title}
\author{A.\ Uthor}
\date{\includegraphics[height=2in]{example-image}}
\begin{document}
\maketitle
\lipsum[1-4]
\end{document}
mwe
package提供示例图片(通过graphicx
)和虚拟文字(通过lipsum
)。