Is there any LaTeX template for making simple book summaries? I just want to have the title (summary of book x), chapters, subchapters, and to enumerate the definitions/theorems/lemmas depending on the chapter or subchapter, for example in section 1.2.3 the first definition to be Definition 1.2.3.1 and the second Definition 1.2.3.2 etc, and to be able to insert pictures or diagrams.
Thanks in advance
lipsumpackage to insert dummy text. – Peter Grill May 2 '12 at 4:02\documentclass{book} \usepackage{lipsum} \begin{document} \chapter{First Chapter} \lipsum[1] \section{First section} \lipsum[2] \end{document}, just add the code to insert a few definitions, and then show what the desired output is. – Peter Grill May 2 '12 at 4:03