删除 newlfm 中的页眉和页脚行

删除 newlfm 中的页眉和页脚行

newlfm我正在尝试使用into撰写求职信\documentclass{...}

信件没问题,但每页都有一条丑陋的顶部和底部标线。有人用过这个吗?知道如何删除吗?

我使用的示例代码如下:https://tex.stackexchange.com/a/15534

答案1

将其添加到您的序言中应该有效:

\makeatletter
\g@addto@macro{\ps@ltrhead}{%
  \renewcommand{\headrulewidth}{0pt}%
  \renewcommand{\footrulewidth}{0pt}%
}
\g@addto@macro{\ps@othhead}{%
  \renewcommand{\headrulewidth}{0pt}%
  \renewcommand{\footrulewidth}{0pt}%
}
\makeatother

这是因为该类在内部使用了包fancyhdr,而这是删除该包中页眉和页脚线条的标准方法。该类定义了两种样式,ltrhead并且othhead,这样,我们就删除了这两种样式中的线条。

答案2

这也有效(见截图):

\newlfmP{Headlinewd=0pt,Footlinewd=0pt}

并参见newlfm 手动的

在此处输入图片描述

完整列表:

\documentclass[dateright,dateyes,13pt,stdletter]{newlfm}%
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\greetto{To whom it may concern,}
\closeline{Best regards,}
% one more solution
\newlfmP{Headlinewd=0pt,Footlinewd=0pt}
\namefrom{Jonh Doe}
\begin{document}
\begin{newlfm}
\lipsum[23]
\end{newlfm}
\end{document}

相关内容