scrlttr2 中「提前發送傳真/郵件」的位置在哪裡?

scrlttr2 中「提前發送傳真/郵件」的位置在哪裡?

如果您透過正式/legaö信件發送內容,您可以之前透過郵件或傳真等方式提供副本。如果是這樣,您通常會更改該副本以包含以下內容:

每份傳真後接信件
每份郵件後接信件

或者:

提前每份傳真
提前每封郵件

如果我用 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}

在此輸入影像描述

相關內容