scrlettr2:如何去除侧面痕迹?

scrlettr2:如何去除侧面痕迹?

我需要使用该包创建一封信scrlettr2。为此,我编写了下面给出的 LaTeX 文档。

但是当我编译它时,我看到侧面有标记(见左侧的 3 个红色椭圆)。

截屏

我怎样才能除去它们?

以下是源代码:

% koma_env.tex
\documentclass[a4paper,backaddress=off]{scrlttr2}
% \usepackage{lmodern}
\usepackage[utf8]{inputenc}
% \usepackage[T1]{fontenc}
% \usepackage[english]{babel}
% \usepackage{url}



\setkomavar{fromname}{\{\{Landlord Name\}\}}
\setkomavar{fromaddress}{\{\{Landlord Name\}\} \\ \{\{Landlord Correspondence Address Line 1\} \\ \{\{Landlord Correspondence Line 2 (if applicable)\}\} \\ \{\{Town/City\}\} \\ \{\{County\}\} \\ \{\{Postcode\}\}}

\begin{document}

\begin{letter}{\{\{Tenant Names\}\} \\ \{\{Property Address Line 1\}\} \\ \{\{Property Address Line 2 (if applicable)\}\}
\\ \{\{Town/City\}\} \\ \{\{County\}\} \\ \{\{Postcode\}\}}

\KOMAoptions{fromphone=false,fromfax=false}
\setkomavar{subject}{Pre Check-Out Inspection at \{\{1st line of Property\}\}}

\opening{Dear \{\{Tenant Names\}\}}

Your tenancy is due to come to an end on \{\{date\}\}. I would like to arrange an inspection at the property before the tenancy ends to identify anything that may lead me to retain some of your deposit if not addressed by the time I retake possession.

Carrying out this inspection prior to the tenancy ending will give you the opportunity to tackle anything raised and ensure I can return the maximum amount of deposit to you when the tenancy ends

I would like to carry out the inspection on \{\{date\}\} at \{\{time\}\}. It would be best if you were present then if anything is identified we can discuss this and be clear on what would be required to rectify it. Please can you contact me as soon as possible to confirm whether or not this is convenient.

If you do not wish to be present I have a set of keys to access the property and will send you the results of the inspection. Please let me know either way at your earliest convenience.

\closing{Kind Regards}

\end{letter}

\end{document}

答案1

只需添加 KOMA 选项

\KOMAoptions{foldmarks=off}

添加到序言中将会删除它们。

答案2

找到了解决方案:

\documentclass[a4paper,backaddress=off,foldmarks=false]{scrlttr2}

相关内容