LaTeX - (四)制作自己的模板
目录
编译环境
我在本地编译的环境:
1PS C:\> tex -version
2TeX 3.141592653 (TeX Live 2025)
3kpathsea version 6.4.1
4Copyright 2025 D.E. Knuth.
5There is NO warranty. Redistribution of this software is
6covered by the terms of both the TeX copyright and
7the Lesser GNU General Public License.
8For more information about these matters, see the file
9named COPYING and the TeX source.
10Primary author of TeX: D.E. Knuth.
11
12PS C:\> latex -version
13pdfTeX 3.141592653-2.6-1.40.27 (TeX Live 2025)
14kpathsea version 6.4.1
15Copyright 2025 Han The Thanh (pdfTeX) et al.
16There is NO warranty. Redistribution of this software is
17covered by the terms of both the pdfTeX copyright and
18the Lesser GNU General Public License.
19For more information about these matters, see the file
20named COPYING and the pdfTeX source.
21Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
22Compiled with libpng 1.6.46; using libpng 1.6.46
23Compiled with zlib 1.3.1; using zlib 1.3.1
24Compiled with xpdf version 4.04
25
26PS C:\> xelatex -version
27XeTeX 3.141592653-2.6-0.999997 (TeX Live 2025)
28kpathsea version 6.4.1
29Copyright 2025 SIL International, Jonathan Kew and Khaled Hosny.
30There is NO warranty. Redistribution of this software is
31covered by the terms of both the XeTeX copyright and
32the Lesser GNU General Public License.
33For more information about these matters, see the file
34named COPYING and the XeTeX source.
35Primary author of XeTeX: Jonathan Kew.
36Compiled with ICU version 76.1; using 76.1
37Compiled with zlib version 1.3.1; using 1.3.1
38Compiled with FreeType2 version 2.13.3; using 2.13.3
39Compiled with Graphite2 version 1.3.14; using 1.3.14
40Compiled with HarfBuzz version 10.2.0; using 10.2.0
41Compiled with libpng version 1.6.46; using 1.6.46
42Compiled with pplib version v2.2
43Compiled with fontconfig version 2.15.0; using 2.15.0
笔记模板和书籍模板
我的笔记模板和书籍模板都可以在我的仓库 chen-huaneng/latex-template 中找到。
参考文档
对于特定的包,可以通过命令行查看相应的包说明,比如 amsthm
包可以通过下面的命令在本地的 PDF 阅读器打开:
1texdoc amsthm
以下是我在编写模板时参考的一些文档或者链接:
- 官方网站,提供了一些文档的链接: LaTeX Documentation
- 最基本的 Package, Class 包文档(
texdoc clsguide
): LaTeX for package and class authors current version - 文档编写的一些相关包的介绍: 如何写一个package或者class - 知乎
- 一个用于数学笔记的简洁模板: fenglielie/latexzero: LaTeX Templates for Mathematical Notes