### Makefile Targets for ThuThesis Source: https://github.com/tuna/thuthesis/blob/master/README.md Specific targets for the Makefile. Use 'make thesis' to generate the example PDF, 'make doc' for the manual, 'make clean' to remove intermediate files, 'make cleanall' to remove intermediate files and the thesis PDF, and 'make distclean' for a complete cleanup. ```shell make thesis Generate the thesis "thuthesis-example.pdf"; make doc Generate the template manual "thuthesis.pdf"; make clean Remove intermediate files of the example (excluding "thuthesis-example.pdf"); make cleanall Remove intermediate files and "thuthesis-example.pdf" of the example. make distclean Remove all intermediate files and PDFs for both example and template. ``` -------------------------------- ### 安装 TeX Live (Linux) Source: https://github.com/tuna/thuthesis/wiki/新手指南 在 Ubuntu 系统上使用 apt 包管理器安装 TeX Live。不推荐此方法,因为软件包管理器通常更新不及时。 ```bash $ sudo apt install texlive ``` -------------------------------- ### 更新 TeX Live 宏包 Source: https://github.com/tuna/thuthesis/wiki/新手指南 使用 tlmgr 命令更新 TeX Live 的自​​身和所有宏包到最新版本。建议将 remote repository 设置为清华的 mirror 以节省时间。 ```bash $ tlmgr update --self --all ``` -------------------------------- ### 查看宏包文档 Source: https://github.com/tuna/thuthesis/wiki/新手指南 使用 texdoc 命令在命令行中直接调出指定宏包的使用说明,例如 ctex 宏包。 ```bash $ texdoc ctex ``` -------------------------------- ### Makefile Usage for ThuThesis Source: https://github.com/tuna/thuthesis/blob/master/README.md This snippet shows the available targets for the Makefile used with the ThuThesis template. Use these commands to compile the thesis, documentation, clean intermediate files, or perform a full clean. ```shell make [{all|thesis|doc|clean|cleanall|distclean}] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.