lco 文件 scrlttr2 中的德语字符

lco 文件 scrlttr2 中的德语字符

我想使用 lco 文件来保存我的个人信息。不幸的是,(ß, ä, ...)该文件中包含几个德语字符,这些字符在最终的 pdf 中无法正确显示。使用\RequirePackage\usepackage都无法解决我的问题。或者 都可以\RequirePackage[latin1]{inputenc}。有人有什么建议吗?

问候 Andi

答案1

我没有问题,如果每一个文件是UTF-8编码的。

\begin{filecontents*}{andileni.lco}
\ProvidesFile{andileni.lco}
\setkomavar{fromname}{Andi Leni}
\setkomavar{signature}{Andi Leni}
\setkomavar{fromaddress}{Müllerstraße\\Würzburg}
\end{filecontents*}

\documentclass[
  foldmarks=true,
  foldmarks=blmtP,
  andileni,
  version=last
]{scrlttr2}
\usepackage[utf8]{inputenc}

\begin{document}
\begin{letter}{Üöäß\\Berlin}
\opening{Dear Üöäß,}

you have a very strange name.

\closing{Best wishes}
\end{letter}

\end{document}

filecontents*环境仅用于使示例自成一体。

enter image description here

相关内容