scrlttr2 中的“提前发送传真/邮件”应该放在哪里?

scrlttr2 中的“提前发送传真/邮件”应该放在哪里?

如果您发送正式/正式信件,您可以提前通过邮件或传真等方式提供副本。如果是这样,您通常会更改该副本以包含以下内容:

通过传真和信件
通过邮件和信件

或者:

提前传真
提前邮件

如果我使用 scrlttr2 设计我的信件样式,我该把它放在哪里?

接收方地址字段很容易被滥用,我只找到了specialmailKOMA 变量。但是,它将其包含在地址字段的右上角,并为其加下划线。我猜这应该是用于其他用途。所以你能向我解释一下我应该用它做什么吗specialmail

我期望

据我所见,在大多数信件中,这些词都是印刷的或者 -更频繁(我更希望如此)- 一两行收件人地址。文本通常--用两个或三个连字符包围--

所以最后它看起来可能是这样的:

-- 提前通过邮件发送 --

Don Joe
c/o Some Company Org
Goodstreet 3
0283 City
德国

主题:StackExchange 演示

亲爱的乔先生,
[…]

答案1

如果你还没有使用 KOMA 变量location,你可以将此变量设置为

\setkomavar{location}{-{}- per mail in advance -{}-}

然后您可以根据需要调整位置字段的位置,例如:

\setplength[-]{lochpos}{\useplength{toaddrhpos}}
\setplength{locvpos}{\useplength{toaddrvpos}}
\setplength{locwidth}{\useplength{toaddrwidth}}
\setplength[2]{locheight}{\baselineskip}
\addtoplength[-2]{locvpos}{\baselineskip}

例子:

\documentclass{scrlttr2}

%% to show the position of fields address and location:
%\LoadLetterOption{visualize}
%\showfields{address,location}

\usepackage{blindtext}% only for dummy text

\setkomavar{fromname}{rugk}
\setkomavar{location}{-{}- per mail in advance -{}-}

% change the position of the location field
\setplength[-]{lochpos}{\useplength{toaddrhpos}}
\setplength{locvpos}{\useplength{toaddrvpos}}
\setplength{locwidth}{\useplength{toaddrwidth}}
\setplength[2]{locheight}{\baselineskip}
\addtoplength[-2]{locvpos}{\baselineskip}

\begin{document}
\begin{letter}{Don Joe\\c/o Some Company Org\\Goodstreet 3\\0283 City\\Germany}
\opening{Dear Mr. Joe,}
\blindtext
\closing{Best regards}
\end{letter}
\end{document}

在此处输入图片描述

相关内容