Steffen: Fußzeile

Beitrag lesen

Hallo!

Ich habe eine Software, die mit Hilfe eines XSL-Dokumentes eine Worddatei erzeugt. Bitte fragt nicht nach Details, ich bin Anfänger :) Ich habe Beispielcode unten mal angehängt.

Die Befehle mit fo:... funktionieren leider nicht. Kennt jemand in diesem Zusammenhang einen Befehl, mit dem ich eine Fußzeile erzeugen kann??

Über eine Info würde ich mich freuen!
Gruß,
Steffen

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
  <xsl:output method="html" version="1.0" indent="yes"/>
  <xsl:template match="/">

<html>

<xsl:for-each select="/Candidates/Candidate">

<head>
<meta http-equiv="Content-Language" content="de" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Qualifikationsprofil #<xsl:value-of select="PersonalData/No"></xsl:value-of></title>
<style type="text/css">
xsl:comment
.p_h {font-family: Arial; font-size: 20pt; font-style: normal; font-weight: bold;  text-decoration: none; text-align: left;}
.p_h2 {font-family: Arial; font-size: 14pt; font-style: normal; font-weight: bold;  text-decoration: none; text-align: left;}
.p_n {font-family: Arial; font-size: 10pt; font-style: normal; text-decoration: none;font-weight: bold; text-align: left;}
.p_t {font-family: Arial; font-size: 11pt; font-style: normal; text-decoration: none;font-weight: bold; text-align: left;}
.p_s {font-family: Arial; font-size: 10pt; font-style: normal; text-decoration: none; text-align: left;}
.Stil1 {color: #666666}
.Stil2 {font-family: Arial; font-size: 20pt; font-style: normal; font-weight: bold; text-decoration: none; text-align: left; color: #666666; }
.Stil3 {color: #000000}
.Stil4 {font-size: 20pt; font-style: normal; text-decoration: none; text-align: left; color: #666666; font-family: Arial;}
</xsl:comment>
</style>
</head>

<body>

<xsl:variable name="Title" select="PersonalData/Title" />
<xsl:variable name="YoB" select="PersonalData/YearOfBirth" />
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<BR></BR>
<p class="Stil4">mitarbeiterprofil </p>
<BR></BR>
<p class="Stil4">bewerber <xsl:value-of select="PersonalData/No"></xsl:value-of></p>
<BR></BR>
<BR></BR>
<BR></BR>
<xsl:if test="$YoB !=''">
<table border="0" width="680" cellspacing="0" empty-cells="show">
  <tr>
    <td width="24%"><p class="p_t">Jahrgang:</p></td>
    <td width="76%"><p class="p_s"><xsl:value-of select="PersonalData/YearOfBirth"/></p></td>
  </tr>
</table>
<BR></BR>
</xsl:if>

<!-- Education -->
<xsl:if test="string(Certificates/CertName)">
   <table border="0" width="680" cellspacing="0" empty-cells="show">
     <xsl:for-each select="Certificates">
         <xsl:if test="string(CertName)">
          <tr>
            <td width="24%" valign="top"><xsl:if test="position()=1"><p class="p_t">Zertifizierungen:</p></xsl:if></td>
            <td width="20%" valign="top"><p class="p_s"><xsl:value-of select="CertDate"/></p></td>
            <td width="56%" valign="top"><p class="p_s"><xsl:value-of select="CertName"/></p></td>
         </tr>
        </xsl:if>
      </xsl:for-each>
    </table>
    <BR></BR>
  </xsl:if>
<xsl:if test="string(ProfSkills/ForeignLanguage)">
    <table border="0" width="680" cellspacing="0" empty-cells="show">
      <tr>
        <td width="24%" valign="top"><p class="p_t">Fremdsprachen:</p></td>
        <td width="76%" valign="top"><p class="p_s">
              <xsl:for-each select="ProfSkills/ForeignLanguage">
                 <span class="p_s"><xsl:value-of select="."/>
                 <xsl:if test="position()!=last()">
                   xsl:text, </xsl:text>
                 </xsl:if>
                 </span>
              </xsl:for-each>
        </p></td>
      </tr>
    </table>
    <BR></BR>
  </xsl:if>