ETA:这是 LyX 中的原始 MWE如何更改文档标题的边距?
我也有同样的问题,对于 LyX,只是针对 KOMA 文章类而不是标准文章类。不幸的是,我无法切换到标准类,而且我无法自己弄清楚如何将答案中的代码改编为 KOMA 文章。任何帮助都将不胜感激!
LaTeX 数学公式
\documentclass{scrartcl}
\title{This is a fairly long title for the document which should start at the top of the page}
\begin{document}
\maketitle
\end{document}
此处为标准文章类别所需行为及解决方案的图像:如何更改文档标题的边距?
答案1
因此问题似乎只是在 中.cls
,命令不是\newpage\null\vskip 2em
,而是\null\vskip 2em
。因此
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@maketitle}% <cmd>
{\newpage\null\vskip 2em}{}% <search><replace>
{}{}% <success><failure>
\makeatother
必须改为
\usepackage{etoolbox}
\makeatletter
\patchcmd{\@maketitle}% <cmd>
{\null\vskip 2em}{}% <search><replace>
{}{}% <success><failure>
\makeatother