JATS templates: add support for article subtitles
This commit is contained in:
parent
43a8931abf
commit
7954070b01
3 changed files with 17 additions and 0 deletions
|
@ -81,6 +81,9 @@ $endif$
|
||||||
$if(title)$
|
$if(title)$
|
||||||
<title-group>
|
<title-group>
|
||||||
<article-title>$title$</article-title>
|
<article-title>$title$</article-title>
|
||||||
|
$if(subtitle)$
|
||||||
|
<subtitle>${subtitle}</subtitle>
|
||||||
|
$endif$
|
||||||
</title-group>
|
</title-group>
|
||||||
$endif$
|
$endif$
|
||||||
$if(author)$
|
$if(author)$
|
||||||
|
|
|
@ -14,6 +14,9 @@ $endif$
|
||||||
$if(title)$
|
$if(title)$
|
||||||
<title-group>
|
<title-group>
|
||||||
<article-title>$title$</article-title>
|
<article-title>$title$</article-title>
|
||||||
|
$if(subtitle)$
|
||||||
|
<subtitle>${subtitle}</subtitle>
|
||||||
|
$endif$
|
||||||
</title-group>
|
</title-group>
|
||||||
$endif$
|
$endif$
|
||||||
$if(author)$
|
$if(author)$
|
||||||
|
|
11
doc/jats.md
11
doc/jats.md
|
@ -336,12 +336,21 @@ Metadata Values
|
||||||
: Additional notes concerning the whole article. Added to the
|
: Additional notes concerning the whole article. Added to the
|
||||||
article's frontmatter via the [`<notes>`][elem:notes] element.
|
article's frontmatter via the [`<notes>`][elem:notes] element.
|
||||||
|
|
||||||
|
`subtitle`
|
||||||
|
: Subordinate part of the document title. Added to the
|
||||||
|
document's front matter as a
|
||||||
|
[`<subtitle>`][elem:article-title] element.
|
||||||
|
|
||||||
`tags`
|
`tags`
|
||||||
: list of keywords. Items are used as contents of the
|
: list of keywords. Items are used as contents of the
|
||||||
[`<kwd>`][elem:kwd] element; the elements are grouped in a
|
[`<kwd>`][elem:kwd] element; the elements are grouped in a
|
||||||
[`<kwd-group>`][elem:kwd-group] with the
|
[`<kwd-group>`][elem:kwd-group] with the
|
||||||
[`kwd-group-type`][attr:kwd-group-type] value `author`.
|
[`kwd-group-type`][attr:kwd-group-type] value `author`.
|
||||||
|
|
||||||
|
`title`
|
||||||
|
: The article title. Added to the document's front matter via the
|
||||||
|
[`<article-title>`][elem:article-title] element.
|
||||||
|
|
||||||
Required Metadata
|
Required Metadata
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
@ -378,6 +387,7 @@ Required metadata values:
|
||||||
[elem:abstract]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/abstract.html
|
[elem:abstract]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/abstract.html
|
||||||
[elem:article-id]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-id.html
|
[elem:article-id]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-id.html
|
||||||
[elem:article-meta]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html
|
[elem:article-meta]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html
|
||||||
|
[elem:article-title]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-title.html
|
||||||
[elem:copyright-holder]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-holder.html
|
[elem:copyright-holder]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-holder.html
|
||||||
[elem:copyright-statement]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-statement.html
|
[elem:copyright-statement]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-statement.html
|
||||||
[elem:copyright-year]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-year.html
|
[elem:copyright-year]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/copyright-year.html
|
||||||
|
@ -400,6 +410,7 @@ Required metadata values:
|
||||||
[elem:string-name]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/string-name.html
|
[elem:string-name]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/string-name.html
|
||||||
[elem:subj-group]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/subj-group.html
|
[elem:subj-group]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/subj-group.html
|
||||||
[elem:subject]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/subject.html
|
[elem:subject]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/subject.html
|
||||||
|
[elem:subtitle]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/subtitle.html
|
||||||
[elem:surname]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/surname.html
|
[elem:surname]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/surname.html
|
||||||
[elem:xref]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/xref.html
|
[elem:xref]: https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/xref.html
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue