格式化自动包含章节标题的标题时出现问题

格式化自动包含章节标题的标题时出现问题

我正在使用模板来完成作业。它应该将章节标题和小节标题放在标题栏中,但是它们重叠了,看起来很糟糕。

以下是序言中看起来相关的部分:

\documentclass[12pt]{article}
\usepackage{geometry}
\usepackage{fancyhdr} % For custom headers
\setlength{\headheight}{15pt}
\usepackage{extramarks} % For headers and footers
\usepackage{float}
\usepackage{multicol}
\usepackage[titletoc]{appendix}
\usepackage{gensymb}


% Margins
\geometry{
a4paper,
tmargin=1in,
bmargin=1in,
lmargin=1in,
rmargin=1in,
textwidth=6.5in,
textheight=9.0in,
headsep=0.25in
}

% Header and footer
\pagestyle{fancy}
%\lhead{\myName} % Top left header
%\chead{\myCourse}%: \myAssignment} % Top center header
%\rhead{\firstxmark} % Top right header
\lfoot{\lastxmark} % Bottom left footer
\cfoot{} % Bottom center footer
\rfoot{Page\ \thepage\ of\ \pageref{LastPage}} % Bottom right footer
\renewcommand\headrulewidth{0.4pt} % Size of the header rule
\renewcommand\footrulewidth{0.4pt} % Size of the footer rule

我的标题是什么样的

标题应该是“3.2 查找 3D 矩阵的特征值和特征向量”和“3 计算特征值和特征向量”。

我该如何修复这个问题,让它们单独出现,或者删除小节,只留下章节/部分?

相关内容