

This environment takes as a mandatory argument the width of the text since TeX needs to know, before breaking text into lines, how wide the lines should be.
#Latexit not cut line how to#
Now let’s see how to use the minipage environment in practice. We will see that, in fact, the minipage can contain other boxes that are not words, but that will regardless be processed in paragraph mode. That is, the environment contains a sequence of words that LaTeX writes in paragraph mode (so that it splits them into lines, if necessary) and then becomes a single box, a TeX indivisible unit. S o the minipage environment produces parboxes, which are boxes written in paragraph mode. Letters are boxes, but there are other environments that produce boxes, such as the array, tabular, and picture environments. A box cannot be split across lines or pages. Boxes are the indivisible components of your document, that TeX puts together to produce the output that you see. A box is a chunk of text that TeX treats as a unit. To better understand this, we have to answer the first question and explain what boxes are. In paragraph mode, your input is regarded as a sequence of words and sentences to be broken into lines, paragraphs, and pages. Paragraph mode is LaTeX’s normal mode, the one used when processing ordinary text. When LaTeX processes your input text, it is always in one of three modes: Here arise two concrete questions: first, what are boxes, and second, what is paragraph mode. Parboxes are nothing but boxes written in paragraph mode. Don’t worry if you don’t care about technical details: I am going to put it in simple terms, so it is not a dense read, and you have the basic ideas to understand the following sections.

To do so, however, we will have to dive into the basics of LaTeX and its underlying system TeX. Probably this doesn’t tell anything to you, so we are going to break it down and see what it means. The short answer is that minipage is an environment to produce parboxes in LaTeX.
