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 4009 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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10348
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