我想让我的小节标题保持与段落字体相同的大小,有人可以帮我吗?
目前,小节字体相当于 \small,而段落字体相当于 \normal。
这是我的序言:
\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{fixltx2e}
\usepackage{grffile}
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{floatrow}
\usepackage{amsmath}
\usepackage{longtable}
\usepackage{tocbibind}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage{epstopdf}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{tabu}
\usepackage{ragged2e}
\newcolumntype{L}{>{\RaggedRight\arraybackslash}X}
\titleformat{\section}
{\normalfont\fontsize{14}{12}\bfseries}{\thesection}{1em}{}
\makeatletter
\renewcommand{\paragraph}{%
\@startsection{paragraph}{4}%
{\z@}{1.2ex \@plus 1ex \@minus .2ex}{-1em}%
{\normalfont\normalsize\bfseries}%
}
\renewcommand{\baselinestretch}{1.0}
\makeatother
\setcounter{secnumdepth}{3}
然后我就用\subsubsection
答案1
我认为使用\normalfont
或在标题\textnormal
内\subsubsection
可以达到您的目的。
\subsubsection{\textnormal{I am same as the paragraph font}}
I am the paragraph.
或者,
\subsubsection{\normalfont I am same as the paragraph font}
I am the paragraph.
答案2
titlesec
带有选项的包允许explicit
您使用简单的格式化命令;例如:
\titleformat*\subsubsection}[hang]{\large\bfseries\boldmath}{0.5em}{\thesubsubsection.}{#1}
在哪里:
- “可选”参数是该部分的形状;
hang
是 LaTeX 默认的。 - 下一个参数是应用于标签和标题文本的一般格式。
- 第三个参数是标签和标题之间的距离。
- 第四个参数是标签格式(这里在标签末尾添加一个点。
- 最后一个参数是标题前面的代码(如果
explicit
选择了该选项,则为#1)。