Skip to content

Wiley HTML format

Forrest Bao edited this page May 27, 2018 · 1 revision

A paper in Wiley HTML style has two <article> tags. Only the inner one is the paper. The inner one is under a <div class="article__body"> node.

Under the inner <article> node, we have two <section> nodes

  1. the first for Abstracts
<section class="article-section article-section__abstract">
   <h2>ABSTRACT</h2>
   <p>a paragraph </p>
   <p>another paragraph </p>

All <p> nodes (not immediately) under it are abstract paragraphs.

  1. the second for all normal sections <section class="article-section article-section__full">. It's organized as follows:
<section class="article-section article-section__full">
  <div class="article-section__content">
    <h2>This is the 1st section</h2>
    <p>1st paragraph of first section </p>
    <p>2nd paragraph of first section </p>
  </div>
  <div class="article-section__content">
    <h2>This is the 2nd section</h2>
     <div class="article-section__sub-content">
        <h3 class="article-section__sub-title section2">Head of S. 2.1</h3>
        <p>A paragraph  </p>
  </div>
  <section>MANY_SUPPORT_INFO_REFS_SECTIONS</section>
</section>

Tables and Figures

  • Caption of a table is like this:
<header class="article-table-caption">
    <span class="table-caption__label">Table I.</span>
    List of strains
</header>
  • Figure caption is like this:
<figcaption class="figure__caption">
   <div class="figure__caption__header">
      <strong class="figure-title">Figure 1</strong> 
      <div class="figure-extra">Links_TO_OPEN_IN_ANOTHER_PAGE_OR_POWERPOINT</div>
   </div>
   <div>Here is the caption which may include inline figures. </div>
   <div class="accordion visible-xs visible-sm visible-md"><a href="#" title="Single Accordion Controller" aria-expanded="false" aria-controls="fabit25021-fig-0001" target="_self" class="accordion__control"><span>Caption</span><i aria-hidden="true" class="icon-keyboard_arrow_down"></i></a>
     <div id="fabit25021-fig-0001" class="accordion__content" style="display: none;">The caption again, without images that may appear inline in the previous div node. 
     </div>
   </div>
</figcaption>

Style

  • No <strong> or <b> in normal text, except the numberings of figures, tables, and citations.
  • <i> no `
  • <sup> and <sub>

Heuristics

  • Extract all <p> tags under <section class="article-section article-section__abstract">
  • Locate all <div class="article-section__content"> under <section class="article-section article-section__abstract">. Then extract all <p> tags. We will lose (sub)section information and hearings.
  • Extract <header class="article-table-caption"> for table captions. Table numbering is included.
  • The only <div class="accordion__content"> node under any <figurecaption> node.
Clone this wiki locally