0

I have prepared a modified references style for Microsoft word 2010 document. Following part of XSL file indicates how online resources should be displayed in the references list at the end of my word document.

<source type="DocumentFromInternetSite">
  <column id="1">
    <halign>right</halign>
    <valign>top</valign>
    <format>{[%RefOrder%]}</format>
  </column>
  <column id="2">
    <halign>left</halign>
    <valign>top</valign>
    <format>{%Author:1%, }{%InternetSiteTitle|Title%,}{ %URL:l%}{ Published %Year%.}{ Retreived %Month%.}</format>
  </column>
  <sortkey></sortkey>
</source>

My aim is to have a new line or enter character in the format tag just before { Published %Year%.}{ Retreived %Month%.} in order to have the mentioned information in the next line. I tried to use &#xa; or &#10;, but unfortunately did not work.

4

1 回答 1

0

您可能想尝试组合 CR+LF,

&#13;&#10;

换行。

于 2013-07-11T12:37:16.037 回答