我正在尝试制作一个全页、全宽的目录。我使用以下类:
\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
每次我尝试使用时\tableofcontents
,都会得到半页的表格。
如何使其占据整页和整宽?
答案1
从你的问题来看(对我来说),你的文档(文章?)应该是什么样子的:
- 作为一栏文章:在这种情况下你应该声明
\documentclass[letterpaper, 10 pt, conference, onecolumn]{ieeeconf}
% other used packages and title definition
\begin{document}
%title, abstract etc
\tableofcontents
% rest of article
\end{document}
- 作为组合布局,其中
\tableofcontents
在一列中,标准文档的其余部分如下twocolum
:
\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
% other used packages and title definition
\begin{document}
%title, abstract etc
\onecolumn
\tableofcontents
\twocolumn
% rest of article is in two column
\end{document}
- 作为组合布局,
\tableofcontents
其中整个第一页保留在一列布局中,其余页面保留在以下twocolum
布局中:
\documentclass[letterpaper, 10 pt, conference]{ieeeconf}
% other used packages and title definition
\begin{document}
%title, abstract etc
\onecolumn
\tableofcontents
\clearpage
\twocolumn
% rest of article is in two column
\end{document}
为了测试上述情况,我需要您提供最小工作示例 (MWE)。看看您实际上喜欢上述哪种情况。
答案2
您可以调整课程选择:
\documentclass[letterpaper,10pt]{IEEEconf}
\usepackage{lipsum}
\begin{document}
\author{A. Uthor}
\title{Title}
\twocolumn[
\maketitle
\tableofcontents
\bigskip\bigskip
]
\section{First}
\subsection{Hello}
\lipsum[1-2]
\section{Second}
\subsection{Hello}
\lipsum[3-4]
\section{Third}
\subsection{Hello}
\lipsum[1-2]
\section{Fourth}
\subsection{Hello}
\lipsum[3-4]
\end{document}