2

I'm trying to make a list in which each item has multiple lines, and I want the items to line up horizontally, like this:

1. this is the        2. and this is
   first item in         the second item
   the list           

I've tried a bunch of different things, but what always ends up happening is that the first line of the second item lines up with the last line of the first item, like so:

1. this is the
   first item in
   the list 2. and this is
   the second item

Anyone have a way around this? Thanks!

1 Answers1

3

Have you considered using the tasks package? It can achieve something like what you're asking for.

\documentclass{article}
\usepackage{tasks}
\begin{document}

I'm trying to make a list in which each item has multiple lines, and I want the items to line up horizontally, like this:
\begin{tasks}(2)
\task  
 this is the        
   first item in      
   the list      this is the        
   first item in      
   the list      this is the        
   first item in      
   the list      this is the        
   first item in      
   the list           
\task and this is the second itme.and this is the second itme.and this is the second itme.and this is the second itme.and this is the second itme.
\end{tasks}

\end{document}

enter image description here

A.Ellett
  • 50,533