-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathConferencePaperRef.js
35 lines (34 loc) · 1.33 KB
/
ConferencePaperRef.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { TEXT, CHILDREN, STRING } from 'substance'
import { RICH_TEXT_ANNOS } from './modelConstants'
import Reference from './Reference'
/*
<element-citation publication-type="confproc">
<conf-name>Proceedings of the 17th Annual Meeting of International Society for Magnetic Resonance in Medicine</conf-name>
<conf-loc>Hawaii, United States</conf-loc>
<year>2009</year>
<person-group person-group-type="author">
<name>
<surname>Leemans</surname>
<given-names>A</given-names>
</name>
</person-group>
<article-title>ExploreDTI: a graphical toolbox for processing, analyzing, and visualizing diffusion MR data</article-title>
</element-citation>
*/
export default class ConferencePaperRef extends Reference {}
ConferencePaperRef.schema = {
type: 'conference-paper-ref', // publication-type="confproc"
title: TEXT(...RICH_TEXT_ANNOS), // <article-title>
authors: CHILDREN('ref-contrib'), // <person-group person-group-type="author">
confName: STRING, // <conf-name>
confLoc: STRING, // <conf-loc>
containerTitle: STRING, // <source>
year: STRING, // <year>
month: STRING, // <month>
day: STRING, // <day>
fpage: STRING, // <fpage>
lpage: STRING, // <lpage>
pageRange: STRING, // <page-range>
elocationId: STRING, // <elocation-id>
doi: STRING // <pub-id pub-id-type="doi">
}