>>>>> "Philip" == Philip Lehman <[EMAIL PROTECTED]> writes:
Philip> I just added a bunch of fonts to my tetex config. How do I
Philip> tell lyx about them, so that I can choose one of them from the
Philip> layout/document pop-up?
You cannot currently. The easiest way, if the fonts are recognized by
LaTeX, is to add the proper commands in Layout->LaTeX_Preamble. For
example, all that the 'times' oprion does is:
% sans serif is helvetica
\renewcommand{\sfdefault}{phv}
% normal is times
\renewcommand{\rmdefault}{ptm}
% typewriter is courier
\renewcommand{\ttdefault}{pcr}
As you can see, in many cases it is not very difficult. When it is
trickier (for ex. getting math font right), then there exists a latex
package to do it, and you just have to do, e.g.
\usepackage{pslatex}
Hope this helps.
JMarc