我有以下问题:
以下 LaTeX 代码:
\section{A Section with some Tables}
In this section we present the results of our computations for the Coxeter
groups of types $B_3$, $H_3$, $B_4$, $D_4$, $F_4$, and $H_4$, thus verifying
Theorem~\autoref{thm:main} for irreducible Coxeter groups of rank three and
four.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{$W$ of type $B$}
\label{BTheorySection}
Assume now that $V$ is the reflection representation of $W=W(B_n)$ with
$n\geq 2$ and let $\{\, v_1, \dots, v_n\,\}$ be a basis of $V$. We view $W$
as acting on $V$ by signed permutations of $\{\,v_1,v_2,\ldots,v_n\,\}$.
Namely, the Coxeter generators $s_1,s_2,\ldots,s_n$ are given by
产生以下输出:
我希望对小节进行编号而不是用斜体显示,在这种情况下期望的输出应该是:
2.2 包含一些表格的部分
...
2.2.1 B型W
...
您可以在以下链接中找到我的 LaTeX 文件:https://www.dropbox.com/s/iz7w3lwr65yds87/fancy.zip要编译的文件名为“fancydissertation.tex”
感谢您的帮助。
答案1
你UNTdissertation.sty
有:
%%% This redefines the \subsection command so that it's flush left and
%%% italicized.
\renewcommand\subsection{\@startsection{subsection}{2}%
\z@{.35\linespacing\@plus.7\linespacing}{.25\linespacing}%
{\normalfont\itshape}}
因此,这不是一个错误,而是一个功能。如果你真的不喜欢它(并且喜欢提到的风格),你可以重新定义它。经过长时间的斗争,我(我希望)明白了,你想要什么。那么你应该用以下代码替换上面的几行
经过长时间的战斗,我明白(我希望),你会得到什么。因此,你应该用
\renewcommand\subsection{\@startsection{subsection}{2}%
\z@{.35\linespacing\@plus.7\linespacing}{.25\linespacing}%
% {\normalfont\itshape}}
{\normalfont}}
评论:希望以后能提供链接的 ZIP 文件。也许能帮助到下一批用户。(而且工作人员很漂亮)。
答案2
完整修复,包括子部分:
\renewcommand\subsection{\@startsection{subsection}{2}%
\z@{.35\linespacing\@plus.7\linespacing}{.25\linespacing}%
% {\normalfont\itshape}}
{\normalfont}}
\renewcommand\subsubsection{\@startsection{subsubsection}{3}%
\z@{.35\linespacing\@plus.7\linespacing}{.25\linespacing}%
{\normalfont}}