Page Layout ⇒ switch from two-column to one-column page without pagebreak
-
- Posts: 7
- Joined: Sat Dec 26, 2015 8:49 pm
switch from two-column to one-column page without pagebreak
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
switch from two-column to one-column page without pagebreak
\twocolumn
which is internally used for abstracts and the like; or you use a doublefloat in which you pack what you want/need. Code: Select all
\documentclass[twocolumn]{article}
\usepackage{xcolor}
\usepackage{blindtext}
\begin{document}
\blindtext
\twocolumn[\textcolor{red!60!black}\blindtext]
\begin{figure*}
\textcolor{blue!50!black}\blindtext
\end{figure*}
\blindtext
\begin{table*}[bp]
\textcolor{orange!50!black}\blindtext
\end{table*}
\noindent\parbox{\textwidth}{\textcolor{green!50!black}\blindtext}
\blindtext[4]
\end{document}
Package stfloats extends the standard and allows floats at the bottom of pages.
-
- Posts: 7
- Joined: Sat Dec 26, 2015 8:49 pm
switch from two-column to one-column page without pagebreak
Code: Select all
\begingroup
\let\clearpage\relax
\onecolumn
\endgroup
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
switch from two-column to one-column page without pagebreak
\maketitle
. Don't; the standard title is quite ugly anyway.Put the title as well as the abstract and the keywords in the optional argument of
twocolumn
.Code: Select all
\documentclass[twocolumn]{article}
\usepackage{blindtext}
\begin{document}
\twocolumn[{\centering{\Huge Why is this all
happening?\par}\vspace{3ex}
{\Large Crazy Cabybara\par}\vspace{2ex}
\today\par\vspace{4ex}}
{\centering\bfseries Abstract\par}
\smallbreak
\blindtext
\medbreak
Keywords: Ant, Bee, Penguin
\par\vspace{2ex}]
\blindtext[5]
\end{document}