1

このソリューションからMS Word文書にフッターを作成しようとしました。わかりました。フッターは見栄えが良いのですが、フッターのテキストがドキュメントの本文に複製されています。どうすればこれを削除できますか?

ドキュメントのスクリーンショット: http://d.pr/i/GR4U

ドキュメントのコード:

<html xmlns:o="urn:schemas-microsoft-com:office:office"
      xmlns:w="urn:schemas-microsoft-com:office:word"
      xmlns="http://www.w3.org/TR/REC-html40">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta>
        <!--[if gte mso 9]>
            <xml>
                <w:WordDocument>
                    <w:View>Print</w:View>
                    <w:Zoom>90</w:Zoom>
                    <w:DoNotOptimizeForBrowser/>
                </w:WordDocument>
            </xml>
        <![endif]-->
        <style xmlns="" type="text/css" media="all">
            body {font-size: 100%;}
            h1.normal {color: #000 !important; width: 75%;}
            .content_block {margin-right: 3%; width: 74%;}
            div#documentBody {margin-top: 31px;padding-bottom: 30px;}
            div.incut-head span.incut-head-control {font-weight: bold;}
            div.docChainList {font-family: Arial;font-size: 13px; margin: 7px 0 0; padding: 10px;}
            table.author-tbl {width: 40%;}
            div.page-box {width: 100%;}
            div.page-wrapper .doc-page .content {font-size: 14px;}
            pre {font-family: sans-serif;word-wrap: break-word;}

            div.MsoFooter, li.MsoFooter, p.MsoFooter{
                margin:0in;
                margin-bottom:.0001pt;
                mso-pagination:widow-orphan;
                tab-stops:center 3.0in right 6.0in;
                font-size:12.0pt;
            }


            <!-- /* Style Definitions */
                @page Section1{
                    size:8.5in 11.0in;
                    margin:1.0in 1.25in 1.0in 1.25in ;
                    mso-footer: f1;
                    mso-footer-margin:.5in;
                }

                div.Section1{
                    page:Section1;
                }
            -->
        </style>
</head>
<body>
    <div class="Section1">
        <div xmlns="" class="content_block">
            <div class="above-header"></div>
            <h1 class="normal">Header of document</h1>
            <div id="documentBody" class="content-common">
                <p>Document body text.</p>
            </div>
        </div>
    </div>
    <div xmlns="" style="mso-element:footer" id="f1">
        <p class="MsoFooter">
            Copyright, 2013
        </p>
    </div>
</body>
</html>
4

1 に答える 1