I was wondering how can one place vertical spacing on both the left and right columns while using the [twocolumn] option. I used the \vspace{} command above the section of code where the columns begin, but it only puts vertical spacing on the left column. I need the right column to also be spaced down vertically at the same distance as the left column.
Asked
Active
Viewed 2,858 times
4
1 Answers
3
I'm not sure if this is what you need, but you could increase the top margin using the geometry package:
\documentclass[twocolumn]{article}
\usepackage[pass,showframe]{geometry}
\newgeometry{top=10cm}
\usepackage{lipsum}
\begin{document}
\lipsum[1-4]
\end{document}

Notes:
- options to
geometry:passtellsgeometrynot to change anything, but just load the package.showframemakesgeometrydisplay lines at the margins. lipsumis just for blind text (four paragraphs of blind text).- This will, as visualized by the lines, also push the header down. Let me know if that's unwanted.
doncherry
- 54,637
-
@ Don: Thanks for the answer. I have to get off now, but I will check with my TeX code tomorrow and see if this does the trick. – night owl Jul 24 '11 at 11:31
-
-
This was good, and what I mean by good is in the sense that this is how I would like it to look so far as the
twocolumngoes, but I did not want thislipsumthing added. Imagine having 50 vocabulary words and you wanted to put 25 words on each column for the page. This is what I was looking for. The left column words 1-25 and the right column 26-50. Is that clear to picture? Let me know if you need more description. – night owl Aug 10 '11 at 10:07 -
The
lipsumis just blind text, simply remove it. If you want the columns balanced, take a look at TH.'s answer. If, however, you want to make a vocab list with one language on the left hand side and the other on the right hand side, I strongly recommend using a table instead of thetwocolumnoption. On tables in general, see e.g. The Not So Short Introduction to LaTeX2e. If you want to modify the table further, check out http://tex.stackexchange.com/q/12672. – doncherry Aug 10 '11 at 11:15
multicolinstead, if possible. – Jul 24 '11 at 08:05twocolumnoption (to a documentclass), e.g. loaded like this:\documentclass[twocolumn]{article}. If I'm mistaken, please revert my edit. – doncherry Jul 24 '11 at 09:24