Advertisement
j0h

book.tex

j0h
Jun 14th, 2025
1,624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.53 KB | None | 0 0
  1. \documentclass[12pt]{book}
  2.  
  3. % --- Variable Assignments ---
  4. \newcommand{\AuthorName}{Author}
  5. \newcommand{\BookTitle}{Title}
  6. \newcommand{\PublishYear}{year}
  7.  
  8. % --- Packages ---
  9. \usepackage[utf8]{inputenc}
  10. \usepackage[T1]{fontenc}
  11. \usepackage{lmodern}
  12. \usepackage{geometry}
  13. \usepackage{setspace}
  14. \usepackage{graphicx}
  15. \usepackage{hyperref}
  16.  
  17. % --- Page Setup ---
  18. \geometry{margin=1in}
  19. \setstretch{1.25}
  20. \hypersetup{
  21.    colorlinks=true,
  22.    linkcolor=blue,
  23.    urlcolor=blue,
  24.    pdftitle={\BookTitle},
  25.    pdfauthor={\AuthorName}
  26. }
  27.  
  28. % --- Title Info ---
  29. \title{\BookTitle}
  30. \author{\AuthorName}
  31. \date{\PublishYear}
  32.  
  33. \begin{document}
  34.  
  35. % --- Title Page ---
  36. \maketitle
  37. \frontmatter
  38.  
  39. % --- Preface / Acknowledgements ---
  40. \chapter*{Preface}
  41. This book, *\BookTitle*, was written by \AuthorName{} in \PublishYear.  
  42. You can include your acknowledgements here.
  43.  
  44. % --- Table of Contents ---
  45. \tableofcontents
  46. \mainmatter
  47.  
  48. % --- Chapters ---
  49. \chapter{Introduction}
  50. Welcome to *\BookTitle*. This chapter introduces the core ideas of the book.
  51.  
  52. \chapter{Secure Protocols}
  53. In this chapter, \AuthorName{} explores secure communications in networks.
  54.  
  55. \chapter{Conclusion}
  56. Final remarks and forward-looking statements by \AuthorName.
  57.  
  58. % --- Backmatter ---
  59. \backmatter
  60. \chapter*{Appendix}
  61. Additional details and supplementary data.
  62.  
  63. % --- Bibliography ---
  64. \chapter*{Bibliography}
  65. \begin{thebibliography}{9}
  66. \bibitem{example}
  67. Author Name,
  68. \textit{Book Title},
  69. Publisher, Year.
  70. \end{thebibliography}
  71.  
  72. \end{document}
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement