"Stephan E. Schlierf" wrote:
> 
> First (and uncomplete) testing shows the following results:
> I created one master-LyX-file and included two other LyX-files. A preview
> (pdf or dvi) shows the master document but only one (the first) of the

can you send example-files?

> included documents. Second problem is: How can I create a link that is valid
> for both - pdf and html ?

this works, when you use pdftex, otherwise work with a boolean
variable and set it to true for pdf and false for html 

\newif \ifpdf
    \ifx \pdfoutput \undefined
        \pdffalse
    \else
        \pdftrue
\fi
\usepackage{html}
\let\myUrl\url
\renewcommand\url[1]{%
        \ifpdf
                \myUrl{#1}
        \else
                \htmlink{#1}
\fi


maybe that the \htmllink command has another name, look at
package.

Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/

Reply via email to