0
votes
0answers
47 views

How to make columns in itemize?

I want to put two/three columns of short formulas under one item in itemize. Like this: Item name % and now here come two columns under this item formula 1 formula 2 formula 3 ...
3
votes
1answer
80 views

Two-column itemization with title in each column

I'd like to make a two-column list with some kind of titles, with "normal" text before and after. I tried it with the package "multicol" an with "minipage", neiter turned out well. Since the problem ...
3
votes
1answer
120 views

How to resume list numbering (enumerated lists) with multicols environments

This question is related to "How to interrupt-resume a list in latex". I am making an exam for my students and I want to use the multicols environment for various portions of the test. The problem ...
5
votes
1answer
402 views

Multiple Choices Questions in 2 or 3 columns

The following code gives a way to produce Multiple Choices Questions. This solution comes from here. I would like to have the possibility to display the choices in 2 or 3 columns by giving one ...
8
votes
3answers
756 views

Two column table, enumerate first column but not second

I need to have a two column table, where the first column contains enumerations and the second take plain text. For example, Column 1 Column 2 1. Step 1 Reason 1 2. Step 2 ...
5
votes
2answers
734 views

Same indentation of itemize and itemize in columns

How can I get the indentation to be the same for normal itemize and itemize in columns? Like in the example code below, the itemize in a column is less indented. \documentclass{beamer} ...
14
votes
2answers
2k views

How to Continue Enumerate Across Columns in Beamer

I am trying to create two columns of a single enumerated list on a single frame in beamer. How do I go about getting the enumeration to continue from one column to the next?
1
vote
1answer
1k views

Top alignment of itemize in columns of beamer

I do not know what is wrong but the top alignment of the itemize environments in the two columns are different. I could not find a reason for this. \documentclass[10pt,fleqn,t]{beamer} ...
6
votes
1answer
500 views

Alignment within enumerate

I'm looking for a way to sort of combine the features of enumerate (and other list-like environments) with features of tabular environments. Specifically, what I like about enumerate is that it ...
10
votes
2answers
5k views

Beamer: Top-aligning columns within a top-aligned frame

According to p. 25 of the beamer manual, the t option top-aligns either every frame (when used as a class option) or a single frame (when used as optional argument of a frame environment). According ...
4
votes
1answer
2k views

How to control column/page breaks in multicols environment with nested lists?

I've a nested list within a multicolumn like this: \begin{multicols}[2] \begin{list} \item main item1 \begin{list} \item this is a very long item \item this is a short ...