我需要更改 scrbook 文档的结构。我希望某些部分变成章节,反之亦然。但由于文档中已经有子部分和子子部分,我不想手动执行此操作。有没有更简单的方法?
我正在使用 TeXstudio。
样本:
\documentclass[a4paper, twoside, 12pt]{scrbook}
\begin{document}
\chapter{Introduction}
\subsection{Should be a chapter}
\subsubsection{Some more info}
\subsubsubection{another layer}
\subsubsection{Still stuff to say}
\end{document}
应该成为
\documentclass[a4paper, twoside, 12pt]{scrbook}
\begin{document}
\chapter{Introduction}
\chapter{Now is a chapter}
\subsection{Some more info}
\subsubsection{another layer}
\subsection{Still stuff to say}
\end{document}