So I am writing a book on AWK, and the first \chapter is called "Line Spacing". In this chapter I a dozen of various line spacing methods, such as
1. Double-space a file.
2. Triple-space a file,
etc.
I am wondering how can I apply formatting to these methods so that each one of them looked like sub-title (smaller text, bold and numbered)?
Here is what I mean, so I have a \chapter called "Line Spacing" and then I wish "1. Double-space a file." to be also in bold but smaller font so it looks like a sub-title,
Chapter 1: Line Spacing
... intro about what line spacing is ...
1. Double-space a file.
awk '1; { print "" }'
. . .