Eliminar completamente refline en scrlttr2

Eliminar completamente refline en scrlttr2

Quiero usar variables KOMA como myrefpero no quiero que reflineaparezcan en mi documento (ya que tengo la intención de colocarlas myrefen otro lugar). Sin embargo, refline=falseparece no tener ningún efecto. ¿Cómo puedo hacer que el refline desaparezca totalmente?

MWE (sin que desaparezca la refline):

\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}

Respuesta1

Úselo \removereffieldspara eliminar todos los campos de la línea de referencia excepto la fecha:

\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}

ingrese la descripción de la imagen aquí

información relacionada