创建一个新命令,完全模仿回忆录的 section* 命令,但前面没有空格?

创建一个新命令,完全模仿回忆录的 section* 命令,但前面没有空格?

我正在使用memoir,目前该\section*命令可以完成我想要的所有事情,除了在某些情况下我不想要它前面的空格。

\documentclass[12pt]{memoir}
\begin{document}
\section{No Space, top of page}
\section*{Space}
\section*{No space above here, please}
\end{document}

带间距的示例

如何创建一个\qrr*类似\section*但没有前置空格的新命令?我不想意外更改其他命令的\section格式\section*

答案1

不确定这是你想要的,但根据对问题的评论,我提供了这个答案;\qrr定义如下\sectionmemoir.cls唯一的变化是0pt标题之前的空间和6级别):

\documentclass{memoir}
\usepackage{lipsum}
\usepackage{mdframed}

\makeatletter
\newcommand{\qrr}{%
  \sechook%
  \@startsection{section}{6}%  level 1
      {\secindent}%            heading indent
      {0pt}%        skip before the heading
      {\aftersecskip}%         skip after the heading
      {\normalfont\secheadstyle}} % font
\makeatother

\begin{document}
\section{No Space, top of page}
\lipsum[4]
\section*{Space}
\lipsum[4]
\begin{mdframed}
\qrr*{No space above here, please}
\lipsum[4]
\end{mdframed}

\end{document}

在此处输入图片描述

相关内容