>>>>> "nbecker" == nbecker <[EMAIL PROTECTED]> writes:
nbecker> Has anyone made a memo style? I have a LaTeX memo style.
nbecker> How can I use something like it in LyX?
nbecker> Basically it is an add-on package to use with any other, such
nbecker> as article that defines a \makecover to produce the Subject:,
nbecker> To:, From: lines at the top of the memo.
The easiest way is to replace the usual title commands with the memo
commands (I guess you do not need Title, Author and Date,
right?). Commands which should go before \maketitle are identified by
a
InTitle 1
tag in their description. They should be first in the file, and
\maketitle is issued after the last one. Since you do not want
\maketitle but \makecover, you should make the two equal. For that,
add
Preamble
\usepackage{memo} % or whatever name
\let\maketitle=\makecover
EndPreamble
These lines will be added to the LaTeX file automatically.
I hope this helps. Tell me if you cannot make sense out of these
explanations.
JMarc