Text FormattingFormatting two columns "single-spaced"

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
lynnkwon
Posts: 1
Joined: Wed Jun 21, 2017 4:17 am

Formatting two columns "single-spaced"

Post by lynnkwon »

Can you kindly see the attachment? I want to make the right column "single-spaced" (no spacings between lines) like the column on the left. how can I Latex?

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
Untitled_Redacted.png (268.61 KiB) Viewed 3913 times
Last edited by lynnkwon on Thu Jun 22, 2017 8:50 am, edited 5 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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"

Post by Stefan Kottwitz »

Welcome to the forum!

Can you please post real code, not as an image? I cannot use an image for testing. The best would be a Infominimal working example.

Stefan
LaTeX.org admin
User avatar
nlct
Posts: 276
Joined: Thu Nov 06, 2008 11:15 am

Formatting two columns "single-spaced"

Post by nlct »

The 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}
You might also want to consider changing (using \setlength) the list parameters (\itemsep, \topsep and \parsep) to adjust the space between items instead of manually using \vspace.

Regards
Nicola Talbot
Post Reply