From 41c1ade7b044690a9a0b3bc3c469d4e1d301f6be Mon Sep 17 00:00:00 2001 From: "Mr. Kin" <1355093365@qq.com> Date: Sat, 31 Jul 2021 22:58:45 +0800 Subject: [PATCH] remove vertical space above and below listings environment --- LaTeXTemplates/ClsStyle/ClsStyle.tex | 8 +++++++- LaTeXTemplates/ClsStyleLight/ClsStyleLight.tex | 8 +++++++- PublicResources/DocClass.cls | 4 +++- PublicResources/DocClassLight.cls | 4 +++- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/LaTeXTemplates/ClsStyle/ClsStyle.tex b/LaTeXTemplates/ClsStyle/ClsStyle.tex index 10f7a75..320523e 100644 --- a/LaTeXTemplates/ClsStyle/ClsStyle.tex +++ b/LaTeXTemplates/ClsStyle/ClsStyle.tex @@ -152,7 +152,7 @@ \section{图片测试} \begin{figure}[h] \centering - \includegraphics[scale=0.8]{SampleImage} + \includegraphics[scale=0.95]{SampleImage} \caption{示例图片} \end{figure} @@ -163,7 +163,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{enumerate} \subsection{默认无序列表} @@ -172,7 +174,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{itemize} \subsection{自定义标签有序列表(enumitem)} @@ -181,7 +185,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{enumerate} \section{下划线测试(ulem)} diff --git a/LaTeXTemplates/ClsStyleLight/ClsStyleLight.tex b/LaTeXTemplates/ClsStyleLight/ClsStyleLight.tex index f6cd2fd..cc37b44 100644 --- a/LaTeXTemplates/ClsStyleLight/ClsStyleLight.tex +++ b/LaTeXTemplates/ClsStyleLight/ClsStyleLight.tex @@ -147,7 +147,7 @@ \section{图片测试} \begin{figure}[h] \centering - \includegraphics[scale=0.8]{SampleImage} + \includegraphics[scale=0.95]{SampleImage} \caption{示例图片} \end{figure} @@ -158,7 +158,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{enumerate} \subsection{默认无序列表} @@ -167,7 +169,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{itemize} \subsection{自定义标签有序列表(enumitem)} @@ -176,7 +180,9 @@ \item test测试 \item 测试 \item 测试test + \item The quick brown fox jumps over the lazy dog. \item 滚滚长江东逝水,浪花淘尽英雄。是非成败转头空,青山依旧在,几度夕阳红。白发渔樵江渚上,惯看秋月春风。一壶浊酒喜相逢,古今多少事,都付笑谈中。 + \item The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \end{enumerate} \section{下划线测试(ulem)} diff --git a/PublicResources/DocClass.cls b/PublicResources/DocClass.cls index 2494015..e8e9390 100644 --- a/PublicResources/DocClass.cls +++ b/PublicResources/DocClass.cls @@ -180,7 +180,7 @@ } % ----------------------------------------------- -% 清除双面排版时封面和目录后的空白页的设定 +% 抑制双面排版时封面和目录后的空白页的设定 % ----------------------------------------------- \if@twoside % 重定义 \frontmatter 命令 @@ -374,6 +374,8 @@ backgroundcolor=\color{gray!5}, % 代码框背景颜色:5% 的灰色。 breaklines=true,% 代码过长时则换行。 gobble=8, % 去掉代码前多余的缩进,默认行头和代码的缩进距离为 0。 + aboveskip=0pt, % listings 环境上方的垂直空间。 + belowskip=0pt, % listings 环境下方的垂直空间。 } % ----------------------------------------------- diff --git a/PublicResources/DocClassLight.cls b/PublicResources/DocClassLight.cls index fe71c31..38a2b36 100644 --- a/PublicResources/DocClassLight.cls +++ b/PublicResources/DocClassLight.cls @@ -151,7 +151,7 @@ } % ----------------------------------------------- -% 清除双面排版时封面和目录后的空白页的设定 +% 抑制双面排版时封面和目录后的空白页的设定 % ----------------------------------------------- \if@twoside % 重定义 \frontmatter 命令 @@ -337,6 +337,8 @@ backgroundcolor=\color{gray!5}, % 代码框背景颜色:5% 的灰色。 breaklines=true,% 代码过长时则换行。 gobble=8, % 去掉代码前多余的缩进,默认行头和代码的缩进距离为 0。 + aboveskip=0pt, % listings 环境上方的垂直空间。 + belowskip=0pt, % listings 环境下方的垂直空间。 } % -----------------------------------------------