Page Layouttwocolumn layout

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
chimanrao
Posts: 8
Joined: Mon Mar 01, 2010 8:39 am

twocolumn layout

Post by chimanrao »

How do I force text to go in the second column?

Code: Select all

\documentclass[twocolumn]{article}
\begin{document}
Some text in first column

some text in second column
\end{document}
I can use multicol package, but in this package I am not able to customize the column separator, I wanted it to be a dotted line, but its always coming as a thick line.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

twocolumn layout

Post by localghost »

chimanrao wrote:[...] I can use multicol package, but in this package I am not able to customize the column separator, I wanted it to be a dotted line, but its always coming as a thick line.
At first you should show how you do that without the package. I'm sure this would be possible even when using it and you would have the \columnbreak command to begin the new column. Depending on your goal you may take a look at the parallel or parcolumns package.


Thorsten
chimanrao
Posts: 8
Joined: Mon Mar 01, 2010 8:39 am

twocolumn layout

Post by chimanrao »

You have to use \pagebreak if you are not using multicol package.

Code: Select all

\documentclass[twocolumn]{article}
\begin{document}
Some Text
\pagebreak
\end{document}
This is the code with multicol package, you need to use \colummnbreak.

Code: Select all

\documentclass[twocolumn]{article}
\usepackage{multicol}
\begin{document}
\thispagestyle{empty}
\begin{multicols}{2}
Column One
\columnbreak
Column Two
\end{multicols}
\end{document}

I am not able to customize to separator line to be a dotted line.
Investigations are going on :-)

Chimanrao
Post Reply