Code: Select all
\documentclass[twocolumn]{article}
\begin{document}
Some text in first column
some text in second column
\end{document}
Code: Select all
\documentclass[twocolumn]{article}
\begin{document}
Some text in first column
some text in second column
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
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.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.
Code: Select all
\documentclass[twocolumn]{article}
\begin{document}
Some Text
\pagebreak
\end{document}
Code: Select all
\documentclass[twocolumn]{article}
\usepackage{multicol}
\begin{document}
\thispagestyle{empty}
\begin{multicols}{2}
Column One
\columnbreak
Column Two
\end{multicols}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.