当前位置:   article > 正文

Latex学习笔记(五)——Latex模板学习总结_requirepackage{geometry}

requirepackage{geometry}

前言:

        最近参加了数学建模大赛,整个论文都是使用Latex工具排版的,至此感觉到了它的魅力。但是由于论文模板是主办方提供的,在排版格式定义文件(.cls文件)中已经设置好了所有环境,因此用起来还是很简单的。比赛结束以后,打算学习模板的制作过程,因此研读了该大赛模板的 cls 文件。

 

一、宏包Listings的使用

       Listings 是专用于代码排版的 Latex 宏包,可对代码中的关键词、注释和字符串等使用不同的字体和颜色,也可以为代码添加边框、背景等风格。 Listings 有许多参数控制输出,如果它不支持内置的编程语言,我们还可以自己定义。

       下面显示的代码 Lstlisting 环境用于设置随附的源代码。我们将 LATEX代码放入 texstudio 编辑器中,然后通过 elatex 运行它。latex源代码如下:

在生成的PDF中的显示效果如下:

1.1 显示行号索引

     我们可以代码片段加上行号索引,行号可用于所有显示的列表,例如:左边的每个小数字,与程序代码的距离为5pt:

在pdf中的显示效果为:

1.2 制表符

       如果程序的代码中包含制表符,则可能会在pdf中获得意想不到的输出效果。为了更好地说明,我们来比较使用tabsize = 2和tabsize = 4的区别。 请注意,\ lstset 会修改同一环境中所有后续代码的值。 这不是问题,如果想要单独更改某个程序代码的设置,请使用可选参数。

tabsize = 2 的设置效果如下:

编译后的显示效果:

tabsize = 6 的设置效果如下:

编译后的显示效果:

 

1.3 添加边框

          aboveskip and belowskip 参数分别控制上边距和下边距,frame 选择是否为代码添加边框,其可选的值有: none 、leftline、 topline、bottomline、lines (top and bottom)、 single ( for single frames )、or shadowbox。

          例如我们现在给代码添加 ‘single’ 形式的边框,如下:

编译后的效果如下所示:

然后给代码添加 ‘lines’ 形式的边框,如下:

编译后的效果:

1.4 背景颜色

      我们可以给代码设置背景颜色,不过需要先导入颜色包,然后可以通过backgroundcolor =(颜色命令)请求彩色背景。有多种方法可以手动将颜色定义为所需的色调,接下来先介绍如何进行自定义颜色。

     在Latex文档中使用颜色的最简单方法是导入宏包 color 或 xcolor 。 两个包都提供了一组用于颜色操作的通用命令,但后者更灵活,并支持更多的颜色模型。首先我们自定义几种颜色,使用 \definecolor 来自定义颜色的方法如下:

  1. \usepackage{xcolor}
  2. \definecolor{cRed}{RGB}{0,255,0}
  3. \definecolor{cBlue}{rgb}{0,0,1}
  4. \definecolor{gray}{rgb}{0.5,0.5,0.5}
  5. \colorlet{Mycolor1}{gray!10!}
  6. % 创建了一种名为 Mycolor1 的新颜色,此颜色具有原始gray强度的10%
  7. % 我们可以将其视为10%gray和90%白色的混合物
  8. \color{Mycolor1}{我是自定义的颜色}

     命令\ definecolor有三个参数:新颜色的名称,模型和颜色定义。粗略地说,每个数字代表您添加到构成最终颜色的混合中的每种颜色的数量。rgb:红色,绿色,蓝色。在0和1之间的三个逗号分隔值定义颜色的组件。RGB:与rgb相同,但数字是0到255之间的整数。

编译后的效果如下:

1.5 设置外观

       basicstyle = (style){ } 可以设置基本的风格,我们可以使用  \footnotesize、\small、 \itshape、 \ttfamily或者它们的组合作为style。此外,还有设置注释、字符串以及关键词的显示风格的参数,如:commentstyle=(style) { }、stringstyle=(style){ } 、keywordstyle=(style){ }。

如下所示:

编译后的效果:

1.6 总结

        其他更加详细的内容请参照宏包listings的用户手册。我在我的 cls 文件里面设置 lstset 环境如下:

  1. %-----------------------------导入必要的宏包------------------------------------
  2. % 页面布局
  3. \RequirePackage{geometry}
  4. % 数学宏包
  5. \RequirePackage{amsmath}
  6. \RequirePackage{amsfonts}
  7. \RequirePackage{amssymb}
  8. \RequirePackage{bm}
  9. % 设置颜色
  10. \RequirePackage{xcolor}
  11. % 插入图片
  12. \RequirePackage{graphicx}
  13. % 表格
  14. \RequirePackage{tabularx,array}
  15. %% 长表格
  16. \RequirePackage{longtable}
  17. %% booktabs 提供了\toprule 等命令.
  18. \RequirePackage{booktabs}
  19. %% multirow 支持在表格中跨行
  20. \RequirePackage{multirow}
  21. %% 调整间隔, 让表格更好看些
  22. \RequirePackage{bigstrut}
  23. %% 在跨行表格中输入定界符
  24. \RequirePackage{bigdelim}
  25. % 保护脆落命令
  26. \RequirePackage{cprotect}
  27. %-----------------------------导入必要的宏包------------------------------------
  28. %---------------设置latex中插入的程序代码格式----------------------------------------
  29. %导入listings宏包
  30. \RequirePackage{listings}
  31. %先自定义三种颜色
  32. \definecolor{dkgreen}{rgb}{0,0.6,0}
  33. \definecolor{gray}{rgb}{0.5,0.5,0.5}
  34. \definecolor{mauve}{rgb}{0.58,0,0.82}
  35. %设置lstset环境
  36. \lstset{
  37. frame=tb,
  38. aboveskip=3mm,
  39. belowskip=3mm,
  40. showstringspaces=false,
  41. columns=flexible,
  42. framerule=1pt,
  43. rulecolor=\color{gray!35},
  44. backgroundcolor=\color{gray!5},
  45. basicstyle={\small\ttfamily},
  46. numbers=left,
  47. numberstyle=\tiny\color{gray},
  48. keywordstyle=\color{blue},
  49. commentstyle=\color{dkgreen},
  50. stringstyle=\color{mauve},
  51. breaklines=true,
  52. breakatwhitespace=true,
  53. tabsize=3,
  54. }
  55. %---------------设置latex中插入的程序代码格式---------------------------------------

 这部分代码可以设置好了在tex文件中添加程序代码的格式。

 

二、设置目录页的格式 

           我们可以通过下面的代码定制自己的目录样式:

  1. %----------------------------设置目录格式-----------------------------------------------
  2. % 节的目录格式
  3. \titlecontents{section}[0pt]{\vspace{2mm}\bfseries\heiti}
  4. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  5. % 小节的目录格式
  6. \titlecontents{subsection}[30pt]{\songti}
  7. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  8. \titlecontents{subsubsection}[55pt]{\songti}
  9. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  10. % itletoc 宏包用于自定义目录样式,其中最常用的是下面这条目录样式命令。
  11. % \titlecontents 命令来设置不同级别目录项的格式:
  12. % \titlecontents{章节名称}[左端距离]{标题字体、与上文间距等}{标题序号}{空}{引导符和页码}[与下文间距]
  13. % (1) 其中0pt([左端距离])是目录项到版芯左边界的距离;\vspace{2mm}表示与上文留出一定的垂直距离,该距离为2mm;
  14. % \bfseries\heiti 把整条目录项的字体设为黑体。
  15. % (2) 后面一项是设置目录项的头部,并在其后留出一个汉字宽度的距离。紧跟的是设置目录项主体的格式,
  16. % 这里因为跟目录项头部相同而空置。
  17. % (3) 再后面是设置填充命令和页码。这里用\titlerule*命令画出填充点,
  18. % 这里是把垂直居中的实心圆点作为填充符号(习惯上中文不采用居下的填充点),
  19. % 并以10pt为包含一个填充符号的水平盒子的宽度,即这个宽度越小,填充点越紧密; 填充点后加上页码 \contentspage。
  20. % 注意:用 titlesec 宏包可以在标题中加一些填充物,比如:一条水平线、一排连续或不连续的点等等。用以下三个命令来实现:
  21. % (1) \titleline[<align>]{<horizontalmaterial>}
  22. % 其中中 <align> 表示对齐方式,有三个参数 l、c、r,分别代表左对齐、居中对齐、右对齐;
  23. % <horizontal material> 是要填充的材料,可以是文字、符号等等。
  24. % (2) \titlerule [<height>]:表示在标题中添加一条水平线,<height> 是线的宽度。
  25. % (3) \titlerule ∗[<width >]{<text>}:用于在标题中添加一条填充物,<width> 为填充物的宽度,<text> 为填充的文字或符号。
  26. %----------------------------设置目录格式-----------------------------------------------

 

三、中文章节标题设置

    当然,每一个标题、子标题的格式我们也可以设置,如下:

  1. %--------------------------------中文标题格式设置-------------------------------------------------------------
  2. % 通过 setcounter 命令来控制目录深度,如显示三级目录
  3. \setcounter{secnumdepth}{3}
  4. \def\@seccntformat#1{\csname the#1\endcsname\ \ }
  5. % 更改节、子节等的标题前序号的格式
  6. \renewcommand\thesection{\arabic{section}.}
  7. \renewcommand\thesubsection{\arabic{section}\thinspace.\thinspace\arabic{subsection}}
  8. \renewcommand\thesubsubsection{\thesubsection\thinspace.\thinspace\arabic{subsubsection}}
  9. % 节标题格式, 居中,字体采用 \normalfont,大小采用 \normalsize
  10. \renewcommand\section{\@startsection{section}{1}{\z@}%
  11. {2.5ex \@plus -1ex \@minus -.2ex}%
  12. {2.3ex \@plus.2ex}%
  13. {\bfseries\centering\zihao{4}\heiti}}
  14. \renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
  15. {1.25ex\@plus -1ex \@minus -.2ex}%
  16. {1.25ex \@plus .2ex}%
  17. {\normalfont\normalsize\bfseries}}
  18. \renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
  19. {1.25ex\@plus -1ex \@minus -.2ex}%
  20. {1.2ex \@plus .2ex}%
  21. {\normalfont\normalsize\bfseries}}
  22. \renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
  23. {3.25ex \@plus1ex \@minus.2ex}%
  24. {-1em}%
  25. {\normalfont\normalsize\bfseries}}
  26. \renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
  27. {3.25ex \@plus1ex \@minus .2ex}%
  28. {-1em}%
  29. {\normalfont\normalsize\bfseries}}
  30. %-------------------------------中文标题格式设置-------------------------------------------------------------

 

四、插图、表格、列表以及伪代码等浮动体的环境设置

      类似于插图、表格、算法等浮动题的格式我们也可以设置,如下:

  1. %------------------------浮动环境设置-----------------------------------------------------------
  2. % 下面给出的命令用来控制一页中有多大比例的区域可用来放置浮动对象(这里的比例是指浮动对象的高度除以正文高度\textheight)。
  3. % 前面三个命令只作用于文本页,而最后一个命令只作用于浮动页。这些命令的值可以用 \renewcommand 来修改。
  4. % (1) \textfraction:页面中必须用来排放文本的最小比例。缺省值为 0.2,即要求每页的文字至少占据 20%。
  5. % 而这通常不是我们想要的, 我们将这个要求降低到 5%。
  6. % (2) \topfraction:页面顶部可以用来放置浮动对象的高度与整个页面高度的最大比例。缺省值为 0.7,即
  7. % 放置在页顶部的浮动对象所占的高度不得超过整个页面高度 70%。
  8. % (3) \bottomfraction: 页面底部可以用来放置浮动对象的高度与整个页面高度的最大比例。缺省值为 0.3
  9. % 有时如果多个浮动环境连续放在一起, latex也会将它们分在几个不同页,即使它们可在同一页放得下。
  10. % 我们可以通过修改 \topfraction 和 \bottomfraction 分别设置顶端和底端的浮动环境的最大比例。
  11. % (4) \floatpagefraction: 浮动页中必须由浮动对象占用的最小比例。因此在一浮动页中空白所占的比例
  12. % 不会超过 1 - \floatpagefraction。缺省值为 0.5
  13. % 有时 LaTeX 会把一个浮动环境单独放在一页,我们通过设置要求这个环境至少要占据 85% 才能单独放在一页。
  14. \renewcommand*{\textfraction}{0.05}
  15. \renewcommand*{\topfraction}{0.9}
  16. \renewcommand*{\bottomfraction}{0.8}
  17. \renewcommand*{\floatpagefraction}{0.85}
  18. %------------------------浮动环境设置-----------------------------------------------------------
  19. %------------------------插图、表格以及列表环境设置-----------------------------------------------------------
  20. % 关于图片宏包graphicx,如果图片没有指定后缀, 依次按下列顺序搜索
  21. \DeclareGraphicsExtensions{.pdf,.eps,.jpg,.png}
  22. % 设置图表搜索路径, 可以给图表文件夹取如下名字
  23. \graphicspath{{figures/}{figure/}{pictures/}{picture/}{pic/}{pics/}{image/}{images/}}
  24. % 声明标题的字体、字号
  25. \DeclareCaptionFont{song}{\songti}
  26. \DeclareCaptionFont{minusfour}{\zihao{-4}}
  27. % 如果文章中有section,那么插图标题标签将是1.1, 1.2, 2.1等。
  28. % 我们可以如下设置,该命令指定了一个将更改的标签(如: \thefigure )以及希望显示的标签
  29. % 类型(如:\arabic{figure} ), 也就是说要将插图的序列号显示为阿拉伯数字,如1, 2, 3等。
  30. \renewcommand{\thefigure}{\thesection.\arabic{figure}}
  31. % 可以使用 \captionsetup 设置标题样式,这样后面所有的标题样式都是根据 \captionsetup 重新设置的,
  32. % 即 \captionsetup[FLOAT_TYPE]{OPTIONS}
  33. % 其中可选参数FLOAT_TYPE 可以是table、subtable、figure、subfigure等。
  34. \captionsetup[figure]{
  35. format=hang, % 标题从第二行开始都有缩进, 应该和 justification=raggedright 的效果一样.
  36. labelsep=quad, % 分隔符是一个空格,指标题名称和序号直接的空隙
  37. font={song,minusfour,bf}, % 将fugure环境中的字体设置为: 宋体小四
  38. position=bottom % position=bottom, 不代表标题放在下面, 标题仍放在你放\caption的位置
  39. }
  40. % 表格环境设置
  41. \captionsetup[table]{%
  42. format=hang, % 标题从第二行开始都有缩进, 应该和 justification=raggedright 的效果一样.
  43. labelsep=quad, % 分隔符是一个空格
  44. font={song,minusfour,bf}, % 表的字体, 宋体小四
  45. position=top % position=bottom, 不代表标题放在下面, 标题仍放在你放\caption的位置.
  46. }
  47. % 列表环境设置
  48. % 列表就是将所要表达的内容分为若干个条目并按一定的顺序排列,达到简明、直观的效果。在论文的写作中会经常使用到列表。
  49. % LaTeX 中常见的列表环境有 enumerate、itemize 和 description。这三种列表环境的主要区别是列表项标签的不同。
  50. % enumerate 是有序的列表; itemize 以圆点作为标签;description 是解说列表,可以指定标签。
  51. \setlist{%
  52. topsep=0.3em, % 列表顶端的垂直空白
  53. partopsep=0pt, % 列表环境前面紧接着一个空白行时其顶端的额外垂直空白
  54. itemsep=0ex plus 0.1ex, % 列表项之间的额外垂直空白
  55. parsep=0pt, % 列表项内的段落之间的垂直空白
  56. leftmargin=1.5em, % 环境的左边界和列表之间的水平距离
  57. rightmargin=0em, % 环境的右边界和列表之间的水平距离
  58. labelsep=0.5em, % 包含标签的盒子与列表项的第一行文本之间的间隔
  59. labelwidth=2em % 包含标签的盒子的正常宽度;若实际宽度更宽,则使用实际宽度。
  60. }
  61. %------------------------插图、表格以及列表环境设置-----------------------------------------------------------
  62. %------------------------算法(伪代码)的环境设置----------------------------------------------------------
  63. \floatname{algorithm}{算法}  
  64. \renewcommand{\algorithmicrequire}{\textbf{输入:}}  
  65. \renewcommand{\algorithmicensure}{\textbf{输出:}}  
  66. %------------------------算法(伪代码)的环境设置----------------------------------------------------------

 

五、总结

       学习了各个部分的知识以后,我对模板的 cls 文件的内容做了整理,以后根据自己的需求,对 cls 文件的内容进行更改即可满足使用。整理后的模板 cls  文件内容如下:

  1. \NeedsTeXFormat{LaTeX2e}[1995/12/01]
  2. \ProvidesClass{gmcmthesis}
  3. [2018/09/11 v2.3 update gmcmthesis by latexstudio.net]
  4. \newif\if@gmcm@bwprint\@gmcm@bwprintfalse
  5. \newif\if@gmcm@preface\@gmcm@prefacetrue
  6. \newcommand\gmcm@tokens@keywords{}
  7. \newcommand*\gmcm@tokens@tihao{}
  8. \newcommand*\gmcm@tokens@baominghao{}
  9. \newcommand*\gmcm@tokens@schoolname{}
  10. \newcommand*\gmcm@tokens@membera{}
  11. \newcommand*\gmcm@tokens@memberb{}
  12. \newcommand*\gmcm@tokens@memberc{}
  13. \newcommand*\gmcm@tokens@supervisor{}
  14. \newcommand*\gmcm@tokens@yearinput{}
  15. \newcommand*\gmcm@tokens@monthinput{}
  16. \newcommand*\gmcm@tokens@dayinput{}
  17. \DeclareOption{colorprint}{\@gmcm@bwprintfalse}
  18. \DeclareOption{bwprint}{\@gmcm@bwprinttrue}
  19. \DeclareOption{withoutpreface}{\@gmcm@prefacefalse}
  20. \DeclareOption*{\PassOptionsToClass{\CurrentOption}{ctexart}}
  21. \ExecuteOptions{colorprint}
  22. \ProcessOptions\relax
  23. \LoadClass[a4paper,cs4size]{ctexart}
  24. \RequirePackage{ifxetex}
  25. \RequireXeTeX
  26. \ifxetex\else
  27. \ClassError{mcmthesis}{You must use the `xelatex' driver\MessageBreak Please choose `xelatex'}{%
  28. Just choose `xelatex', no `pdflatex' or `latex' and so on.}
  29. \fi
  30. %---------------------导入必要的宏包----------------------------------------
  31. % 数学宏包
  32. \RequirePackage{amsmath}
  33. \RequirePackage{amsfonts}
  34. \RequirePackage{amssymb}
  35. \RequirePackage{bm}
  36. % 设置颜色
  37. \RequirePackage{xcolor}
  38. % 插入图片
  39. \RequirePackage{graphicx}
  40. % 表格
  41. \RequirePackage{tabularx,array}
  42. %% 长表格
  43. \RequirePackage{longtable}
  44. %% booktabs 提供了\toprule 等命令.
  45. \RequirePackage{booktabs}
  46. %% multirow 支持在表格中跨行
  47. \RequirePackage{multirow}
  48. %% 调整间隔, 让表格更好看些
  49. \RequirePackage{bigstrut}
  50. %% 在跨行表格中输入定界符
  51. \RequirePackage{bigdelim}
  52. % 保护脆落命令
  53. \RequirePackage{cprotect}
  54. % 首行缩进
  55. \RequirePackage{indentfirst}
  56. % 设置浮动体的标题
  57. \RequirePackage{caption}
  58. % 定制列表环境
  59. \RequirePackage{enumitem}
  60. % 下划线
  61. \RequirePackage{ulem}
  62. % 尺寸计算
  63. \RequirePackage{calc}
  64. \RequirePackage{titletoc,url}
  65. %参考文献
  66. \RequirePackage[numbers]{natbib}
  67. \setlength{\bibsep}{0pt plus 0.3ex}
  68. \RequirePackage{etoolbox}
  69. \AtBeginEnvironment{thebibliography}{%
  70. \phantomsection
  71. \addcontentsline{toc}{section}{\refname}
  72. }
  73. % 超链接 hyperref 的设置
  74. \RequirePackage{hyperref}
  75. %---------------------导入必要的宏包----------------------------------------
  76. %---------------设置latex中插入的程序代码格式----------------------------------------
  77. %导入listings宏包
  78. \RequirePackage{listings}
  79. %先自定义三种颜色
  80. \definecolor{dkgreen}{rgb}{0,0.6,0}
  81. \definecolor{gray}{rgb}{0.5,0.5,0.5}
  82. \definecolor{mauve}{rgb}{0.58,0,0.82}
  83. %设置lstset环境
  84. \lstset{
  85. frame=tb,
  86. aboveskip=3mm,
  87. belowskip=3mm,
  88. showstringspaces=false,
  89. columns=flexible,
  90. framerule=1pt,
  91. rulecolor=\color{gray!35},
  92. backgroundcolor=\color{gray!5},
  93. basicstyle={\small\ttfamily},
  94. numbers=left,
  95. numberstyle=\tiny\color{gray},
  96. keywordstyle=\color{blue},
  97. commentstyle=\color{dkgreen},
  98. stringstyle=\color{mauve},
  99. breaklines=true,
  100. breakatwhitespace=true,
  101. tabsize=3,
  102. }
  103. %---------------设置latex中插入的程序代码格式---------------------------------------
  104. %-----------------------设置页面布局-------------------------------------
  105. % 导入页面布局的宏包
  106. \RequirePackage{geometry}
  107. \geometry{top=30.0mm,bottom=25.0mm,left=31.7mm,right=31.7mm,headsep=8mm}
  108. % 利用宏包 geometry设置上、下、左、右的页边距以及标题和正文之间的间距
  109. \renewcommand*{\baselinestretch}{1.38}
  110. % 将行间距调整为1.38倍行距
  111. %-----------------------设置页面布局-------------------------------------
  112. %----------------------设置首行缩进------------------------------
  113. % 导入首行缩进用的宏包
  114. \RequirePackage{indentfirst}
  115. % 每行缩进两个汉字
  116. \setlength{\parindent}{2em}
  117. %----------------------设置首行缩进------------------------------
  118. %----------------------设置文章字体------------------------------
  119. % 设置英文字体
  120. \setmainfont{Times New Roman} %衬线字体
  121. \setmonofont{Courier New} %无衬线字体
  122. \setsansfont{Arial} %等宽字体,一般是打印机字体(中文都是等宽的)
  123. % 设置中文字体
  124. \setCJKmainfont[AutoFakeBold = {2.15},ItalicFont={[simkai.ttf]}]{SimSun}
  125. \setCJKfamilyfont{xw}{STXinwei}
  126. \ifx\lishu\undefined%
  127. \setCJKfamilyfont{zhli}{LiSu}
  128. \newcommand*{\lishu}{\CJKfamily{zhli}}
  129. \else
  130. \fi
  131. \newcommand*{\xinwei}{\CJKfamily{xw}}
  132. %\newcommand*{\lishu}{\CJKfamily{zhli}}
  133. %----------------------设置文章字体------------------------------
  134. % 修改tabular 环境, 设置表格中的行间距为正文行间距.
  135. \let\gmcm@oldtabular\tabular
  136. \let\gmcm@endoldtabular\endtabular
  137. \renewenvironment{tabular}%
  138. {\bgroup%
  139. \renewcommand{\arraystretch}{1.38}%
  140. \gmcm@oldtabular}%
  141. {\gmcm@endoldtabular\egroup}
  142. % 数学环境, 定理等设置
  143. \newtheorem{definition}{\gmcm@cap@definition}
  144. \newtheorem{theorem}{\gmcm@cap@theorem}
  145. \newtheorem{lemma}{\gmcm@cap@lemma}
  146. \newtheorem{corollary}{\gmcm@cap@corollary}
  147. \newtheorem{assumption}{\gmcm@cap@assumption}
  148. \newtheorem{conjecture}{\gmcm@cap@conjecture}
  149. \newtheorem{axiom}{\gmcm@cap@axiom}
  150. \newtheorem{principle}{\gmcm@cap@principle}
  151. \newtheorem{problem}{\gmcm@cap@problem}
  152. \newtheorem{example}{\gmcm@cap@example}
  153. \newtheorem{proof}{\gmcm@cap@proof}
  154. \newtheorem{solution}{\gmcm@cap@solution}
  155. %------------------------浮动环境设置-----------------------------------------------------------
  156. % 下面给出的命令用来控制一页中有多大比例的区域可用来放置浮动对象
  157. % (这里的比例是指浮动对象的高度除以正文高度\textheight)。
  158. % 前面三个命令只作用于文本页,而最后一个命令只作用于浮动页。这些命令的值可以用 \renewcommand 来修改。
  159. % (1) \textfraction:页面中必须用来排放文本的最小比例。缺省值为 0.2,即要求每页的文字至少占据 20%。
  160. % 而这通常不是我们想要的, 我们将这个要求降低到 5%。
  161. % (2) \topfraction:页面顶部可以用来放置浮动对象的高度与整个页面高度的最大比例。缺省值为 0.7,即
  162. % 放置在页顶部的浮动对象所占的高度不得超过整个页面高度 70%。
  163. % (3) \bottomfraction: 页面底部可以用来放置浮动对象的高度与整个页面高度的最大比例。缺省值为 0.3。
  164. % 有时如果多个浮动环境连续放在一起, latex也会将它们分在几个不同页,即使它们可在同一页放得下。
  165. % 我们可以通过修改 \topfraction 和 \bottomfraction 分别设置顶端和底端的浮动环境的最大比例。
  166. % (4) \floatpagefraction: 浮动页中必须由浮动对象占用的最小比例。因此在一浮动页中空白所占的比例
  167. % 不会超过 1 - \floatpagefraction。缺省值为 0.5。
  168. % 有时 LaTeX 会把一个浮动环境单独放在一页,我们通过设置要求这个环境至少要占据 85% 才能单独放在一页。
  169. \renewcommand*{\textfraction}{0.05}
  170. \renewcommand*{\topfraction}{0.9}
  171. \renewcommand*{\bottomfraction}{0.8}
  172. \renewcommand*{\floatpagefraction}{0.85}
  173. %------------------------浮动环境设置-----------------------------------------------------------
  174. %------------------插图、表格以及列表环境设置---------------------------------------------------
  175. % 关于图片宏包graphicx,如果图片没有指定后缀, 依次按下列顺序搜索
  176. \DeclareGraphicsExtensions{.pdf,.eps,.jpg,.png}
  177. % 设置图表搜索路径, 可以给图表文件夹取如下名字
  178. \graphicspath{{figures/}{figure/}{pictures/}{picture/}{pic/}{pics/}{image/}{images/}}
  179. % 声明标题的字体、字号
  180. \DeclareCaptionFont{song}{\songti}
  181. \DeclareCaptionFont{minusfour}{\zihao{-4}}
  182. % 如果文章中有section,那么插图标题标签将是1.1, 1.2, 2.1等。
  183. % 我们可以如下设置,该命令指定了一个将更改的标签(如: \thefigure )以及希望显示的标签
  184. % 类型(如:\arabic{figure} ), 也就是说要将插图的序列号显示为阿拉伯数字,如1, 2, 3等。
  185. \renewcommand{\thefigure}{\thesection.\arabic{figure}}
  186. % 可以使用 \captionsetup 设置标题样式,这样后面所有的标题样式都是根据 \captionsetup 重新设置的,
  187. % 即 \captionsetup[FLOAT_TYPE]{OPTIONS}
  188. % 其中可选参数FLOAT_TYPE 可以是table、subtable、figure、subfigure等。
  189. \captionsetup[figure]{
  190. format=hang, % 标题从第二行开始都有缩进, 应该和 justification=raggedright 的效果一样.
  191. labelsep=quad, % 分隔符是一个空格,指标题名称和序号直接的空隙
  192. font={song,minusfour,bf}, % 将fugure环境中的字体设置为: 宋体小四
  193. position=bottom % position=bottom, 不代表标题放在下面, 标题仍放在你放\caption的位置
  194. }
  195. % 表格环境设置
  196. \captionsetup[table]{%
  197. format=hang, % 标题从第二行开始都有缩进, 应该和 justification=raggedright 的效果一样.
  198. labelsep=quad, % 分隔符是一个空格
  199. font={song,minusfour,bf}, % 表的字体, 宋体小四
  200. position=top % position=bottom, 不代表标题放在下面, 标题仍放在你放\caption的位置.
  201. }
  202. % 列表环境设置
  203. % 列表就是将所要表达的内容分为若干个条目并按一定的顺序排列,达到简明、直观的效果。在论文的写作中会经常使用到列表。
  204. % LaTeX 中常见的列表环境有 enumerate、itemize 和 description。这三种列表环境的主要区别是列表项标签的不同。
  205. % enumerate 是有序的列表; itemize 以圆点作为标签;description 是解说列表,可以指定标签。
  206. \setlist{%
  207. topsep=0.3em, % 列表顶端的垂直空白
  208. partopsep=0pt, % 列表环境前面紧接着一个空白行时其顶端的额外垂直空白
  209. itemsep=0ex plus 0.1ex, % 列表项之间的额外垂直空白
  210. parsep=0pt, % 列表项内的段落之间的垂直空白
  211. leftmargin=1.5em, % 环境的左边界和列表之间的水平距离
  212. rightmargin=0em, % 环境的右边界和列表之间的水平距离
  213. labelsep=0.5em, % 包含标签的盒子与列表项的第一行文本之间的间隔
  214. labelwidth=2em % 包含标签的盒子的正常宽度;若实际宽度更宽,则使用实际宽度。
  215. }
  216. %------------------------插图、表格以及列表环境设置------------------------------------------
  217. %------------------------算法(伪代码)的环境设置----------------------------------------------
  218. \usepackage{algorithm}
  219. \usepackage{algpseudocode}
  220. \usepackage{amsmath}
  221. \floatname{algorithm}{算法}
  222. \renewcommand{\algorithmicrequire}{\textbf{输入:}} % Use Input in the format of Algorithm
  223. \renewcommand{\algorithmicensure}{\textbf{输出:}} % Use Output in the format of Algorithm
  224. %------------------------算法(伪代码)的环境设置----------------------------------------
  225. %----------------------------设置目录的超链接--------------------------------------------------------
  226. % \AtBeginDocument{%
  227. \hypersetup{%
  228. % % unicode=false, % hyperref 和 xetex 同时使用时不能开启 Unicode 选项.
  229. hyperfootnotes=true,
  230. hyperindex=true,
  231. colorlinks=true,
  232. bookmarksnumbered=true,
  233. bookmarksopen=true,
  234. bookmarksopenlevel=0,
  235. allcolors=black,
  236. breaklinks=true}%
  237. % }
  238. % \if@gmcm@bwprint
  239. % \AtBeginDocument{\hypersetup{hidelinks}}
  240. % \else\relax\fi
  241. \def\UrlAlphabet{%
  242. \do\a\do\b\do\c\do\d\do\e\do\f\do\g\do\h\do\i\do\j%
  243. \do\k\do\l\do\m\do\n\do\o\do\p\do\q\do\r\do\s\do\t%
  244. \do\u\do\v\do\w\do\x\do\y\do\z\do\A\do\B\do\C\do\D%
  245. \do\E\do\F\do\G\do\H\do\I\do\J\do\K\do\L\do\M\do\N%
  246. \do\O\do\P\do\Q\do\R\do\S\do\T\do\U\do\V\do\W\do\X%
  247. \do\Y\do\Z}
  248. \def\UrlDigits{\do\1\do\2\do\3\do\4\do\5\do\6\do\7\do\8\do\9\do\0}
  249. \g@addto@macro{\UrlBreaks}{\UrlOrds}
  250. \g@addto@macro{\UrlBreaks}{\UrlAlphabet}
  251. \g@addto@macro{\UrlBreaks}{\UrlDigits}
  252. %----------------------------设置目录的超链接--------------------------------------------------------
  253. %----------------------------设置封面--------------------------------------------------------
  254. % 重定义 \maketitle 命令,用于生成封面
  255. \renewcommand{\maketitle}{\par
  256. \begingroup
  257. \newpage
  258. \global\@topnum\z@ % Prevents figures from going at top of page.
  259. \ge@maketitle %
  260. \endgroup
  261. \global\let\thanks\relax
  262. \global\let\maketitle\relax
  263. \global\let\@maketitle\relax
  264. \global\let\@thanks\@empty
  265. \global\let\@author\@empty
  266. \global\let\@date\@empty
  267. \global\let\@title\@empty
  268. \global\let\title\relax
  269. \global\let\author\relax
  270. \global\let\date\relax
  271. \global\let\and\relax
  272. }
  273. \def\ge@maketitle{%
  274. \newpage
  275. \if@gmcm@preface
  276. \setcounter{page}{0}
  277. \def\thepage{0}
  278. \thispagestyle{empty}%
  279. \begin{center}
  280. {\includegraphics{logo}}
  281. \vskip2.75cm
  282. {\xinwei\zihao{2} \gmcm@ges@string@contents \par}
  283. \end{center}
  284. \vskip2em
  285. % \thispagestyle{gmcmheadings}
  286. \renewcommand\arraystretch{1.3}
  287. \noindent \begin{tabularx}{\textwidth}{lX}
  288. \zihao{-2}\bfseries 学\qquad 校&\zihao{-2}\bfseries\gmcm@tokens@schoolname\\
  289. \hline\\[-15pt]
  290. \zihao{-2}\bfseries 参赛队号&\zihao{-2}\bfseries\gmcm@tokens@baominghao\\
  291. \hline\\[-15pt]
  292. \multirow{3}{*}{\zihao{-2}\bfseries 队员姓名}&\zihao{-2}\bfseries 1. \gmcm@tokens@membera\hfill\null\\
  293. \cline{2-2}\\[-15pt]
  294. &\zihao{-2}\bfseries 2. \gmcm@tokens@memberb\hfill\null\\
  295. \cline{2-2}\\[-15pt]
  296. &\zihao{-2}\bfseries 3. \gmcm@tokens@memberc\hfill\null\\
  297. \hline
  298. \end{tabularx}
  299. \makenametitle
  300. }
  301. \def\makenametitle{
  302. \newpage
  303. \setcounter{page}{1}
  304. \vspace*{2.3cm}
  305. \begin{center}
  306. %{\includegraphics[width=4cm]{logo}}
  307. \vskip.5\baselineskip%
  308. {\xinwei\zihao{2} \gmcm@ges@string@contents \par}
  309. \end{center}
  310. \vskip1.6cm%
  311. \begin{center}\begin{tabularx}{.95\textwidth}{@{}lX@{}}
  312. {\zihao{4} 题\qquad 目} &\hfill\zihao{3}\heiti \@title\hfill\null\\
  313. \cline{2-2}
  314. \end{tabularx}
  315. \end{center}
  316. }
  317. %--------------------------设置封面-------------------------------------------------------
  318. %--------------------------------中文标题格式设置-----------------------------------------
  319. % 通过 setcounter 命令来控制目录深度,如显示三级目录
  320. \setcounter{secnumdepth}{3}
  321. \def\@seccntformat#1{\csname the#1\endcsname\ \ }
  322. % 更改节、子节等的标题前序号的格式
  323. \renewcommand\thesection{\arabic{section}.}
  324. \renewcommand\thesubsection{\arabic{section}\thinspace.\thinspace\arabic{subsection}}
  325. \renewcommand\thesubsubsection{\thesubsection\thinspace.\thinspace\arabic{subsubsection}}
  326. % 节标题格式, 居中,字体采用 \normalfont,大小采用 \normalsize
  327. \renewcommand\section{\@startsection{section}{1}{\z@}%
  328. {2.5ex \@plus -1ex \@minus -.2ex}%
  329. {2.3ex \@plus.2ex}%
  330. {\bfseries\centering\zihao{4}\heiti}}
  331. \renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
  332. {1.25ex\@plus -1ex \@minus -.2ex}%
  333. {1.25ex \@plus .2ex}%
  334. {\normalfont\normalsize\bfseries}}
  335. \renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
  336. {1.25ex\@plus -1ex \@minus -.2ex}%
  337. {1.2ex \@plus .2ex}%
  338. {\normalfont\normalsize\bfseries}}
  339. \renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
  340. {3.25ex \@plus1ex \@minus.2ex}%
  341. {-1em}%
  342. {\normalfont\normalsize\bfseries}}
  343. \renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
  344. {3.25ex \@plus1ex \@minus .2ex}%
  345. {-1em}%
  346. {\normalfont\normalsize\bfseries}}
  347. %-------------------------------中文标题格式设置--------------------------------------
  348. %--------------------------------重定义相关环境和变量-------------------------------------
  349. % 摘要两个字设置为 4 号.
  350. % 定义摘要环境
  351. \renewenvironment{abstract}{%
  352. \if@twocolumn
  353. \section*{\abstractname}%
  354. \else
  355. \begin{center}%
  356. {\zihao{3}\lishu\abstractname\vspace{\z@}}%
  357. \end{center}%
  358. \quotation
  359. \fi}
  360. {\if@twocolumn\else\endquotation\newpage\null\fi}
  361. \renewenvironment{quotation}
  362. {\list{}{\listparindent 2em%
  363. \itemindent \listparindent
  364. \rightmargin\z@
  365. \leftmargin\z@
  366. \parsep \z@ \@plus\p@}%
  367. \item\relax}
  368. {\endlist}
  369. \newcommand\keywords[1]{%
  370. \renewcommand{\gmcm@tokens@keywords}{#1}
  371. \par
  372. \vskip1ex
  373. {\noindent\zihao{-4}\heiti\gmcm@cap@keywordsname:}~{\gmcm@tokens@keywords}
  374. }
  375. \renewcommand\appendix{\par
  376. \setcounter{section}{0}%
  377. \setcounter{subsection}{0}%
  378. \gdef\thesection{\appendixname\@Alph\c@section}}
  379. \newcommand*\baominghao[1]{%
  380. \renewcommand{\gmcm@tokens@baominghao}{#1}}
  381. \newcommand*\schoolname[1]{%
  382. \renewcommand{\gmcm@tokens@schoolname}{#1}}
  383. \newcommand*\membera[1]{%
  384. \renewcommand{\gmcm@tokens@membera}{#1}}
  385. \newcommand*\memberb[1]{%
  386. \renewcommand{\gmcm@tokens@memberb}{#1}}
  387. \newcommand*\memberc[1]{%
  388. \renewcommand{\gmcm@tokens@memberc}{#1}}
  389. %--------------------------------重定义相关环境和变量--------------------------
  390. %----------------------------以中文重命名数学定理相关的常量---------------------------
  391. %数学定理相关的常量
  392. \newcommand*{\gmcm@cap@definition}{定义}
  393. \newcommand*{\gmcm@cap@theorem}{定理}
  394. \newcommand*{\gmcm@cap@lemma}{引理}
  395. \newcommand*{\gmcm@cap@corollary}{推论}
  396. \newcommand*{\gmcm@cap@assumption}{假设}
  397. \newcommand*{\gmcm@cap@conjecture}{猜想}
  398. \newcommand*{\gmcm@cap@axiom}{公理}
  399. \newcommand*{\gmcm@cap@principle}{定律}
  400. \newcommand*{\gmcm@cap@problem}{问题}
  401. \newcommand*{\gmcm@cap@example}{例}
  402. \newcommand*{\gmcm@cap@proof}{证明}
  403. \newcommand*{\gmcm@cap@solution}{解}
  404. %----------------------------以中文重命名数学定理相关的常量-----------------------------------
  405. %----------------------------以中文重命名相关名称-----------------------------------------------
  406. % 中文标题名称
  407. \newcommand*{\gmcm@cap@abstractname}{摘\qquad\quad 要: }
  408. % 中文关键字
  409. \newcommand*{\gmcm@cap@keywordsname}{关键字}
  410. % 以图片的形式显示 “第十五届华为杯数学建模大赛”那几个大字
  411. \newcommand\gmcm@ges@string@contents{\includegraphics{title}}
  412. %----------------------------以中文重命名相关名称-----------------------------------------------
  413. %----------------------------设置目录格式-----------------------------------------------
  414. % 节的目录格式
  415. \titlecontents{section}[0pt]{\vspace{2mm}\bfseries\heiti}
  416. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  417. % 小节的目录格式
  418. \titlecontents{subsection}[30pt]{\songti}
  419. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  420. \titlecontents{subsubsection}[55pt]{\songti}
  421. {\thecontentslabel\hskip.5em}{}{\titlerule*[0.5pc]{.}\contentspage}
  422. % itletoc 宏包用于自定义目录样式,其中最常用的是下面这条目录样式命令。
  423. % \titlecontents 命令来设置不同级别目录项的格式:
  424. % \titlecontents{章节名称}[左端距离]{标题字体、与上文间距等}{标题序号}{空}{引导符和页码}[与下文间距]
  425. % (1) 其中0pt([左端距离])是目录项到版芯左边界的距离;\vspace{2mm}表示与上文留出一定的垂直距离,该距离为2mm;
  426. % \bfseries\heiti 把整条目录项的字体设为黑体。
  427. % (2) 后面一项是设置目录项的头部,并在其后留出一个汉字宽度的距离。紧跟的是设置目录项主体的格式,
  428. % 这里因为跟目录项头部相同而空置。
  429. % (3) 再后面是设置填充命令和页码。这里用\titlerule*命令画出填充点,
  430. % 这里是把垂直居中的实心圆点作为填充符号(习惯上中文不采用居下的填充点),
  431. % 并以10pt为包含一个填充符号的水平盒子的宽度,即这个宽度越小,填充点越紧密; 填充点后加上页码 \contentspage。
  432. % 注意:用 titlesec 宏包可以在标题中加一些填充物,比如:一条水平线、一排连续或不连续的点等等。用以下三个命令来实现:
  433. % (1) \titleline[<align>]{<horizontalmaterial>}
  434. % 其中中 <align> 表示对齐方式,有三个参数 l、c、r,分别代表左对齐、居中对齐、右对齐;
  435. % <horizontal material> 是要填充的材料,可以是文字、符号等等。
  436. % (2) \titlerule [<height>]:表示在标题中添加一条水平线,<height> 是线的宽度。
  437. % (3) \titlerule ∗[<width >]{<text>}:用于在标题中添加一条填充物,<width> 为填充物的宽度,<text> 为填充的文字或符号。
  438. %----------------------------设置目录格式-----------------------------------------------
  439. \pagestyle{plain}
  440. \endinput

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/238421
推荐阅读
相关标签
  

闽ICP备14008679号