Komascript scrrlttr2:如何更改签名中的名称?

Komascript scrrlttr2:如何更改签名中的名称?

StackExchange 会员,

我正在使用 scrlttr2`。出于某些原因,我希望地址行中的名称与签名中的名称不同。

例如:

梅林·A·埃佐尔德
00 某
路某镇
ST1 SP1

作为地址...和

梅林·埃佐尔德

作为签名。居住在日耳曼语国家(尤其是奥地利)的人也可能会遇到这个问题,他们想在地址中而不是在签名中加上姓名前缀(例如 Dipl.-Ing.)...

谢谢你,祝一切顺利,Merlin :)

答案1

签名保存在变量中signature。默认值为\usekomavar{fromname}

    \documentclass{scrlttr2}

    \setkomavar{fromname}{Merlin the wizard}
    \setkomavar{signature}{Merlin, the master of desaster}

    \begin{document}
    \begin{letter}{Ozzy, the metal wizard}
    \opening{Dear friend}
    some awesome text here.
    \closing{Best wishes}
    \end{letter}
    \end{document}

相关内容