如何在文章类中使用 \chapter{}?

如何在文章类中使用 \chapter{}?

我知道 \chapter{} 在文章类中不可用。但是,出于某种原因,我仍然希望使用它。我该怎么做?

答案1

你可以定义自己的 \chapter 命令然后照常使用它。例如:

\documentclass[]{article}

%Add chapter functionality in article class
\usepackage[]{hyperref}
\newcounter{Chapcounter}
\newcommand\showmycounter{\addtocounter{Chapcounter}{1}\themycounter}
\newcommand{\chapter}[1] 
{ {\centering          
  \addtocounter{Chapcounter}{1} \Large \underline{\textbf{ \color{blue} Chapter \theChapcounter: ~#1}} }   
  \addcontentsline{toc}{section}{ \color{blue} Chapter:~\theChapcounter~~ #1}    
}

\hypersetup{colorlinks=true}
\hypersetup{linkcolor=black}
%%%%

%opening
\title{The Title}
\author{Author1, Author2}

\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage

\chapter{Introduction}
    \section{Motivation and Background}
    \section{Literature Survey}
\chapter{Numerical Setup}
    \section{Problem Forumulation}
         \subsection{Subsection-title}
\chapter{Results and Discussion}
     \section{Results}
     \section{Comparision with Literature}
\chapter{Conclusions and Future Scope}
     \section{Conclusions}
     \section{Future Scope}
\end{document}

输出结果如下:

在此处输入图片描述

相关内容