main.tex 417 B

1234567891011121314151617181920
  1. % 导言区
  2. \documentclass[a4paper, 12pt, fontset=ubuntu]{article} % book, report, letter
  3. \usepackage{ctex} % Use chinese package
  4. \title{\heiti [[book_title]]}
  5. \author{\kaishu [[book_author]]}
  6. \date{\today}
  7. % 正文区
  8. \begin{document}
  9. \maketitle % 头部信息在正文显示
  10. \newpage
  11. \tableofcontents % 显示索引列
  12. [[#sections]]
  13. \include{ [[filename]]}
  14. [[/sections]]
  15. \end{document}