1
vote
1answer
75 views

How to define a breakable, resumeable three column list environment

How can I obtain the following? It should have some features: List environment is able to break over pages; Each line in list environment has 3 columns. 1st column (counters) is left aligned. 2nd ...
8
votes
2answers
260 views

Page breaks within enumerated list

I'm writing a document with lots of numbered items, and I would like each of those items to be contained on a single page (rather than split across two pages). Is there a way to do this? samepage ...
0
votes
1answer
88 views

itemize without pagebreak

I have the following structure of my lists (commonly): ..... Here is the list: * item1 * item2 .... I would like to make my list inseverable (the list with its 'caption' won't be divided by ...
2
votes
2answers
166 views

Vertical line & list environment

I would like to make a good looking environment for my proofs. Some are spread on two pages so i thought of the list environment. \documentclass{article} \usepackage[francais]{babel} ...
5
votes
1answer
396 views

Nested enumerate list, Page breaks

I am currently writing a multiple choice exam: There is a enumerated list for the question number and then a nested list for the choices within each multiple choice question: 1. Question 1 a) ...
3
votes
1answer
141 views

afterpage + list = missing \item

I'm trying to use the afterpage package to automatically insert text at the top of each page (please see my other question Section reminders at the top of each page?) but I'm having trouble. ...
1
vote
1answer
1k views

Not breakable list across pages? [duplicate]

Possible Duplicate: How to make a list of unbreakable items? How to prevent pagebreak in description environment My short list is split across two pages. Two bullets are on the end of one ...
2
votes
1answer
231 views

table and page break inside list

For a cooperative latex document with a lot of authors, it was decided to use tables for certain structures. Therefore, I have to cope with the problem of automatic page breaks of tables that only ...
3
votes
3answers
494 views

Avoid page break after \item-followed-by-newline

My document has multiple occurrences of the code fragment \item~\newline \begin{center} \includegraphics{...} \end{center} \item and occasionally, the first item comes right at the end of a page, ...
2
votes
2answers
672 views

How to prevent page breaks in lists? (“Exam” class)

I'm using the exam class to prepare a test. Unfortunately, the package allows page breaks inside the solution list of a question. Considering this toy example: \question Example of question. Choose ...
4
votes
1answer
612 views

How to prevent pagebreak in description environment

I have a simple List in the description Environment. \begin{description} \item [item] number one \item [item] number two \end{description} there is a new new page between the first item and the ...
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 ...
26
votes
2answers
3k views

multicolumn long table or enumeration

I would like to generate a multi-column table that wraps within columns of the document, and splits across pages. There are a couple of similar questions here How do I create a really long table in ...
5
votes
1answer
476 views

Page-breaking over titles of theorems that have lists

When I have multiple part theorems, I use an enumerate environment inside my theorem environment. However, I don't like the list to start at the same level as the theorem title, since this produces ...
7
votes
1answer
1k views

How to make a list of unbreakable items?

In continuation of this question, I tried to make a list of items each consisting of unbreakable text. This can be done manually using minipage: \documentclass[10pt,a4paper]{article} ...
15
votes
2answers
2k views

How to prevent a page break before an itemize list?

It is not nice to have a page break right after the colon and have the list start on a new page: And here, finally, is the list of mission-critical items: \begin{itemize} ... \end{itemize} How can ...