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 3913 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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/