我尝试使用该命令在每一章中设置重新开始章节编号。
\renewcommand\thesection{\Alph{section}.}
并得到这个:
A. 简介 \\ A..1 背景
如何删除章节编号后的一个点?
如果我使用代码:
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\begin{document}
\renewcommand\thesection{\Alph{section}}
\section{Combinatorics}
\subsection{Introduction}
\subsection{Binomial Theorem}
\end{document}
执行构建:
组合数学
A.1 简介
A.2 二项式定理
但如果我使用其他代码:
\begin{document}
\renewcommand\thesection{\Alph{section}.}
\section{Combinatorics}
\subsection{Introduction}
\subsection{Binomial Theorem}
\end{document}
结果是:
A.组合数学
A..1 简介
A..2 二项式定理
我需要的结果:
A.组合数学
A.1. 简介
A.2. 二项式定理
答案1
快速破解:
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\begin{document}
\renewcommand\thesection{\Alph{section}.}
\renewcommand\thesubsection{\Alph{section}.\arabic{subsection}.}
\section{Combinatorics}
\subsection{Introduction}
\subsection{Binomial Theorem}
\end{document}
答案2
由于任何\theX
(X
含义section
,subsection
等等直到subparagraph
(?)。)计数器输出都应有一个后缀.
,最简单的方法是重新定义\@seccntformat
为具有这个尾随点。
\documentclass[10pt,a4paper]{article}
%\usepackage[latin1]{inputenc}
%\usepackage{amsmath}
%\usepackage{amsfonts}
%\usepackage{amssymb}
%\usepackage{graphicx}
\makeatletter
\def\@seccntformat#1{\csname the#1\endcsname.\quad}
\makeatother
\begin{document}
\renewcommand\thesection{\Alph{section}}
\section{Combinatorics}
\subsection{Introduction}
\subsection{Binomial Theorem}
\end{document}