Text Formatting ⇒ Formatting two columns "single-spaced"
Formatting two columns "single-spaced"
Thanks so much in advance!
* Let me know if my question does not abide by "minimum example" conduct.
Here is the code:
\section{\centerline{\textcolor{midnightblue}{TECHNOLOGY SKILLS}}}
%\vspace{15pt} % Reduce space between section title and contents
\begin{multicols}{2}
\begin{itemize}
\item Statistics: SPSS, SAS, MySQL
\vspace{-5pt}
\item Evaluation/Analysis: Qualtrics, Nvivo
\vspace{-5pt}
\item Programming: JAVA, PHP
\vspace{-5pt}
\item Web Design: Dreamweaver, Flash, Actionscript, HTML, CSS
\vspace{-5pt}
\item Web Development: Javascript
\vspace{-5pt}
\item Graphic Design: Photoshop, Illustrator, InDesign
\vspace{-5pt}
\item Movie Editing: After Effects, Premiere Pro
\vspace{-5pt}
\item Content Management Systems (CMS): Drupal, Adobe Experience Manager (AEM)
\end{itemize}
\end{multicols}
\vspace{0.10in}
- Attachments
-
- Untitled_Redacted.png (268.61 KiB) Viewed 4009 times
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Formatting two columns "single-spaced"
Can you please post real code, not as an image? I cannot use an image for testing. The best would be a

Stefan
Formatting two columns "single-spaced"
multicols
environment tries to balance the columns so that they're both the same height. This can cause some extra vertical space. You could try using \raggedcolumns
which will prevent the bottom lines for each column from being aligned.For example:
Code: Select all
\documentclass{article}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\raggedcolumns
\begin{itemize}
\item Statistics: SPSS, SAS, MySQL
\item Evaluation/Analysis: Qualtrics, Nvivo
\item Programming: JAVA, PHP
\item Web Design: Dreamweaver, Flash, Actionscript, HTML, CSS
\item Web Development: Javascript
\item Graphic Design: Photoshop, Illustrator, InDesign
\item Movie Editing: After Effects, Premiere Pro
\item Content Management Systems (CMS): Drupal, Adobe Experience
Manager (AEM)
\end{itemize}
\end{multicols}
\end{document}
\setlength
) the list parameters (\itemsep
, \topsep
and \parsep
) to adjust the space between items instead of manually using \vspace
.Regards
Nicola Talbot
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/