LaTeX教材排版-02:TextBook.cls說明

南宫二狗發表於2024-11-18

LaTeX教材排版-02:TextBook.cls說明


TextBook.cls是模板的主檔案,透過它呼叫其它的檔案。這個檔案的內容如下:

\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%用於指定latex2e程式的版本,我並不知道這名句話會有什麼影響
\ProvidesClass{TextBook}
%給出文類的名字
[2024/09/25 v1.0 TEXTBOOK template]
%不知道是做什麼的
\input{template/OptionsAndPackages}
%設定文類要用到的一些選項
\input{template/Geometry}
%設定頁面版式
\input{template/Fonts}
%設定字型
\input{template/JiaoCaiCommand}
%提供一些自定義的命令
\input{template/Headings}
%設定頁首頁尾
\input{template/ZuoYe}
%排版作業題
\input{template/TongYongPeiZhi}
%一些通用配置
\input{template/listings}
%排版程式碼
\input{template/tables}
%排版表格
\input{template/EnumItem}
%排版列表
\input{template/TableOfContents}
%排版目錄
\input{template/References}
%排版參考文獻
\input{template/Floatings}
%浮動體的統一設定
\input{template/FootnoteAndEndnote}
%腳註和尾註
\input{template/ZhangJieShi}
%定義一個命令\ZhangJieShi,對各級標題進行自定義的配置
\endinput
%結束

相關文章