Myrto Amorgianou wrote:
>First of all I'm trying to remove from the output .html file the bottom
>navigation line and the "XSL Stylesheets" title. I have tried to make
>changes to the tei-param.xsl file but they didn't seem to take any
>effect. Could you please recommend a way to make these changes?
>
>
don't ever edit the original files. prepare
a new XSL called eg "myrto.xsl" which looks like this:
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import
href="http://www.tei-c.org/release/xml/teip4/stylesheet/html/tei.xsl"/>
<!-- wherever your local copy is -->
<xsl:param name="bottomNavigationPanel">false</xsl:param>
</xsl:stylesheet>
and run that on your file.
>
>Also, when I tried to use <div type="letter"> the table of contents
>could not be generated while with <div type="sect"> it was. Would anyone
>know why this is happening?
>
>
>
does the <div type="letter"> have a <head> child? if not,
it does not get into the TOC
--
Sebastian Rahtz
Information Manager, Oxford University Computing Services
13 Banbury Road, Oxford OX2 6NN. Phone +44 1865 283431
OSS Watch: JISC Open Source Advisory Service
http://www.oss-watch.ac.uk
|