elifesciences / elife-vendor-workflow-config

capturing requriemtns and niggles for setting up the elife production workflow
0 stars 1 forks source link

Clean up of archive: sentence case/proper nouns #83

Open Melissa37 opened 9 years ago

Melissa37 commented 9 years ago

`

Research article
            <subj-group subj-group-type="heading">
                <subject>Cell biology</subject>
            </subj-group>
            <subj-group subj-group-type="heading">
                <subject>Computer science</subject>
            </subj-group>
        </article-categories>`

Will be proper nouns, so both words start with capital letter for article type for display and major subject areas

gnott commented 9 years ago

To confirm the above will turn into

<article-categories> 
<subj-group subj-group-type="display-channel"> 
<subject>Research Article</subject> 
</subj-group> 
<subj-group subj-group-type="heading"> 
<subject>Cell Biology</subject> 
</subj-group>
<subj-group subj-group-type="heading"> 
<subject>Computer Science</subject>
</subj-group> 
</article-categories>

Another example (and is not capitalised)

<article-categories>
<subj-group subj-group-type="display-channel">
<subject>Correction</subject>
</subj-group>
<subj-group subj-group-type="heading">
<subject>Human Biology and Medicine</subject>
</subj-group>
<subj-group subj-group-type="heading">
<subject>Microbiology and Infectious Disease</subject>
</subj-group>
</article-categories>
Melissa37 commented 9 years ago

Perfect, thanks M