\section 和 \subsection 之前的 \hspace

\section 和 \subsection 之前的 \hspace

如何放置在和\hspace{}之前?我正在使用。我想为和使用不同的值创建自定义命令。怎么做?救命!\section{}\subsection{}\documentclass[12pt, a4paper]{article}\section{}\subsection{}\hspace

答案1

很难理解这个问题,它只有一段使用未显示的包和未定义的命令的代码,没有其他内容。不过,我认为你想要的只是添加到来自\hspace*{}的副本中\sectionarticle.cls

在此处输入图片描述

\documentclass{article}

\makeatletter
\newcommand\sectionx[1]{\@startsection {section}{1}{\z@}%
                                   {-3.5ex \@plus -1ex \@minus -.2ex}%
                                   {2.3ex \@plus.2ex}%
                                   {\hspace*{#1}\normalfont\Large\bfseries}}
\makeatother
\begin{document}

\tableofcontents

\section{A section}
aaa
\sectionx{1cm}{Another section}
aaa
\sectionx{.5cm}{Yet another section}
aaa
\section{A final section}
aaa

\end{document}

相关内容