帮助格式化方程式字体大小

帮助格式化方程式字体大小

我用过这个:http://www.latex-community.org/forum/viewtopic.php?f=5&t=428在我的 LaTeX 文档中创建方程列表,但“方程列表”格式与 LOF 和 LOT 格式不同。有人知道如何更改方程列表的格式吗?

答案1

将以下行添加到您的文档中:

\setlength{\cftmyequationsindent}{1.5em}
\setlength{\cftmyequationsnumwidth}{2.3em}
\renewcommand{\cftequtitlefont}{\normalfont\Large\bfseries}

这样链接的 MWE 就变成:

\documentclass{article}
\usepackage{amsmath}
\usepackage{tocloft}

\begin{document}
\newcommand{\listequationsname}{List of Equations}
\newlistof[section]{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{%
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par}
\setlength{\cftmyequationsindent}{1.5em}
\setlength{\cftmyequationsnumwidth}{2.3em}
\renewcommand{\cftequtitlefont}{\normalfont\Large\bfseries}

\listofmyequations

\newpage

\begin{equation}\label{eq:Eq1}
   a=b
\end{equation}
\myequations{Equation number \ref{eq:Eq1}}

\newpage

\begin{equation}\label{eq:Eq2}
   b=c
\end{equation}
\myequations{Equation number \ref{eq:Eq2}}  

\end{document} 

输出:

在此处输入图片描述

相关内容