I'm using the following configuration for a document:
Code: Select all
\documentclass[landscape,twocolumn,letterpaper]{article}
\usepackage{color}
\setlength{\columnseprule}{0.5pt} % default=0pt (no line)
Thanks,
Code: Select all
\documentclass[landscape,twocolumn,letterpaper]{article}
\usepackage{color}
\setlength{\columnseprule}{0.5pt} % default=0pt (no line)
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass[landscape,twocolumn,letterpaper]{article}
\usepackage{xcolor}
\usepackage{lipsum}%just to generate some text
\makeatletter
\def\@outputdblcol{%
\if@firstcolumn
\global \@firstcolumnfalse
\global \setbox\@leftcolumn \box\@outputbox
\else
\global \@firstcolumntrue
\setbox\@outputbox \vbox {%
\hb@xt@\textwidth {%
\hb@xt@\columnwidth {%
\box\@leftcolumn \hss}%
\hfil
{\color{blue}\vrule \@width\columnseprule}%original:
%\normalcolor\vrule \@width\columnseprule
\hfil
\hb@xt@\columnwidth {%
\box\@outputbox \hss}%
}%
}%
\@combinedblfloats
\@outputpage
\begingroup
\@dblfloatplacement
\@startdblcolumn
\@whilesw\if@fcolmade \fi
{\@outputpage
\@startdblcolumn}%
\endgroup
\fi
}
\makeatother
\setlength\columnseprule{1pt}
\begin{document}
\lipsum[1-20]
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis