Visualizing boxes of letters and symbols
LaTeX utilizes boxes to organize and position text and symbols, whether entire paragraphs or individual letters and symbols. In this recipe, we will closely examine the dimensions of these boxes, the spacing between them, and the resulting dimensions of dynamically adjusted space. This will give us a deeper understanding of typesetting.
In this section, we will use LuaLaTeX. LuaLaTeX is a variant of LaTeX based on the LuaTeX compiler that integrates the Lua scripting language within TeX. It’s a modern alternative to the pdfLaTeX compiler we usually utilize in this book if not mentioned otherwise. In Chapter 11, Using LaTeX in Science and Technology, we will explore Lua programming.
How to do it...
We will additionally load the lua-visual-debug package. Then, we will compile with LuaLaTeX as follows:
- Open your document or any sample file. Again, we will use the document from our first recipe in Chapter 1, Exploring Various...