
KOMA 변수를 사용하고 싶지만 내 문서에 표시되는 myref
것을 원하지 않습니다 ( 다른 곳에 refline
넣을 예정이므로 ). myref
그러나 refline=false
효과는 없는 것 같습니다. 기준선을 완전히 사라지게 하려면 어떻게 해야 합니까?
MWE(기준선이 사라지지 않음):
\documentclass{scrlttr2}
\usepackage[british]{babel}
\setkomavar{myref}{letterone}
%\KOMAoptions{refline=false} %%This does NOT WORK
\begin{document}
\begin{letter}{Mrs Mabel Canary\\24 The Street\\Some Village\\
Some Town\\Noshire\\AB1 2YZ}
\opening{Dear Mrs~Canary}
This is an imaginary letter.
This is the second paragraph of the letter.
\closing{Yours sincerely}
\ps PS: this is a postscript.
\encl{Photocopy of something interesting\\
Photocopy of something rather dull}
\cc{Prof Important Person\\
Dr Bor Ing}
\end{letter}
\end{document}
답변1
\removereffields
날짜를 제외하고 기준선에서 모든 필드를 제거하는 데 사용됩니다 .
\documentclass{scrlttr2}
\usepackage[british]{babel}
\setkomavar{myref}{letterone}
\removereffields% <- added
\begin{document}
\begin{letter}{Mrs Mabel Canary\\24 The Street\\Some Village\\
Some Town\\Noshire\\AB1 2YZ}
\opening{Dear Mrs~Canary}
This is an imaginary letter.
This is the second paragraph of the letter.
\closing{Yours sincerely}
\ps PS: this is a postscript.
\encl{Photocopy of something interesting\\
Photocopy of something rather dull}
\cc{Prof Important Person\\
Dr Bor Ing}
\end{letter}
\end{document}