<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <contrib-group>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Information Management, Nanjing University</institution>
          ,
          <addr-line>Nanjing</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
      </contrib-group>
      <fpage>0000</fpage>
      <lpage>0002</lpage>
      <abstract>
        <p>Cited text identification is helpful for meaningful scientific literature summarization. In this paper, we introduces our system submitted to the CLSciSumm 2019 Shared Task 1A. Our system have two stages: similarity-based ranking and supervised listwise ranking. Firstly, we select the top-5 sentences per a citation text, due to the modified Jaccard similarity. Secondly, these top-5 selected sentences are proceeded to rank by a CiteListNet (listwise ranking model based on deep learning). Our experiments showed that our proposed method outperformed other prior methods on the CL-SciSumm 2017 test dataset.</p>
      </abstract>
      <kwd-group>
        <kwd>Cited Text Identification</kwd>
        <kwd>Cited Text</kwd>
        <kwd>Listwise Ranking</kwd>
        <kwd>Citation Content Analysis</kwd>
        <kwd>Text Similarity</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>INTRODUCTION</title>
      <p>Automatic summarization of academic paper may be a very effective solution to avoid
the information overload of researchers and to understand the state-of-the-art of the
research topic.</p>
      <p>The CL-SciSumm shared tasks explore the solutions for the making a
comprehensible summary of an academic paper given its citation text. These tasks focuses on the
sentence-level cited text information to perform the summarization of a paper. To this
end, the identification of the cited text should be done. CL-SciSumm Shared Task 1A
is just to identify the spans of cited text in reference paper (RP) that contain the given
citation text of its citing paper (CP).</p>
      <p>In this paper, we use various similarity metrics to evaluate the similarity between a
citation text and its candidate cited sentence, and adopt listwise ranking algorithm to
train our ranking model.</p>
    </sec>
    <sec id="sec-2">
      <title>RELATED WORK</title>
      <p>
        Most of previous studies regarded the identification of cited texts as a classification
problem and thus used some machine learning algorithms like SVM, Random Forest,
CNN to train text classifiers. To build the classifiers, various features were explored by
researchers. Ma et al. (2018) chose Jaccard similarity, cosine similarity and some
position information as features, and trained four classifiers including Decision Tree,
Logistic Regression and SVM.[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ] Finally they used a weighted voting method to combine
the categorization results of the four classifiers and achieved the best performance in
CL-SciSumm 2017 competition. Yeh et al. (2017) considered some lexical features,
knowledge-based features, corpus-based features, syntactic features, surface features to
represent the feature vector and adopted a majority voting method to combine the
results of the six classifiers like KNN, Decision Tree, Logistic Regression, Naive Bayes,
SVM and Random Forest. They got the F value of 14.9% by running their system on
the corpus of the CL-SciSumm 2016 competition.[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]
      </p>
      <p>
        There are two main issues in the categorization-based methods: local ranking and
class-imbalanced data. On the one hand, the cited text identification problem should be
regarded as a ranking problem rather than a classification one because we only intent
to choose the sentence(s) that contains more similar content with the citation
sentence(s) compared to other sentences. On the other hand, there is only few sentences
(usually not more than five) to be cited sentences in a target paper. Sometimes the ratio
of the negative and positive sample in a corpus is even greater than 150. Ma et al. (2018)
used Nearest Neighbor (NN) rule (Wilson, 1972) to reduce data imbalance and
increased the F1-score from 11.8% to 12.5%.[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]
      </p>
      <p>
        With respect to the ranking-based cited text identification, a few studies have been
done. Dipankar et al. (2017) ranked the sentences in a target paper according to the
cosine similarity between each candidate sentence and the citation sentences to select
the top five sentences as the cited sentences.[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] However, this unsupervised method did
not obtain reasonable performance. Therefore, we proposed a listwise ranking method
for identifying cited sentences, which is supervised method trained by a deep learning
mechanism.
3
      </p>
    </sec>
    <sec id="sec-3">
      <title>Methodology</title>
      <p>In this study, we regarded cited text identification as a ranking problem, and proposed
a ranking-based method to identify citation sentences based on deep learning. This
method includes two stages of ranking: a similarity-based unsupervised ranking and a
supervised listwise ranking. Since the cited text was deemed to contain more similar
content with the cited text than other sentences in the same paper, we first ranked all
the sentences in a reference paper according to each sentence’s similarity with a cited
text. Then we choose top K sentences to create a subset of the given train corpus for the
second stage ranking, while the Kth sentence obtained the best F-value according to the
given training corpus. In the second stage, a listwise ranking model was trained on the
subset training corpus to rank the K sentences and then top N sentences (N&lt;K) were
selected as the cited sentences.
3.1</p>
      <sec id="sec-3-1">
        <title>Similarity-based Ranking</title>
        <p>in one of its citing paper, whereas a citation text may contain one or more sentences.
We considered five kinds of similarity metrics, including TFIDF-based cosine
similarity, word embedding-based cosine similarity, SVM Kernel functions-based cosine
similarity, Jaccard-like similarity and BM25.</p>
      </sec>
      <sec id="sec-3-2">
        <title>Cosine Similarity based on TFIDF Weighted Vector Space Model. In this kind of</title>
        <p>similarity metrics, N-grams were extracted from a text as its features and represented
the text as a TFIDF weighted feature vector based on Vector Space Model and
calculated the cosine similarity between two feature vectors. We tested two TFIDF-based
cosine similarity metrics: when N=1 and when N=2 respectively for N-grams.</p>
      </sec>
      <sec id="sec-3-3">
        <title>Cosine Similarity based on Word Embedding. In this kind of similarity metrics, a</title>
        <p>text was represented as a text vector based on word embedding. First, the vector of each
word in a text was trained with Word2vec. Then three kinds of text vectors were
calculated based on the word vectors using different weighting mechanisms, TF-weighted
average of the word vectors (TF-AWV), TFIDF-weighted average (TFIDF-AWV), and
T-statistics-weighted average (Tstat-AWV). Here, the T-statistic of a word refers to the
T-test statistics of the hypothesis that whether the word appears in a text or not is
independent to whether or not the text is a cited text.</p>
        <p>Cosine Similarity based on SVM kernel functions. As we know, a linear inseparable
sample can become linearly separable by projecting a low-dimensional space to a
highdimensional one. Thus we considered to transform the TFIDF-weighted average word
vector (TFIDF-AWV) to a higher-dimensional space by using three SVM kernel
functions, so as to make a text more distinguishable from others. Thus three kinds of kernel
functions-based cosine similarity were calculated with the following equation based on
three kernel functions respectively, i.e. 2-dimension polynomial, 3-dimension
polynomial function and RBF function.</p>
        <p>( ( ),  ( )) =</p>
        <p>( )∙ ( )
√ ( )∙ ( )∙√ ( )∙ ( )
=</p>
        <p>
          ( , )
√ ( , )∙√ ( , )
(1)
Where  (∙) denotes a mapping function, by which a vector space can be mapped to
another space,  (∙,∙) refers to a kernel function that follows Mercer’s condition[
          <xref ref-type="bibr" rid="ref10">10</xref>
          ],
and A (or B) refers to the vectors of the original space.
        </p>
        <p>
          Cosine Similarity based on SVM Kernel Functions. As we know, a linear
inseparable sample can become linearly separable by projecting a low-dimensional space to a
high-dimensional one. Thus we considered to transform the TFIDF-weighted average
word vector (TFIDF-AWV[
          <xref ref-type="bibr" rid="ref11">11</xref>
          ]) to a higher-dimensional space by using three SVM
kernel functions, so as to make a text more distinguishable from others. Thus three
kinds of kernel functions-based cosine similarity were calculated with the following
equation based on three kernel functions respectively, i.e. 2-dimension polynomial,
3dimension polynomial function and RBF function.
        </p>
        <p>Jaccard-like Similarity. A citation text in a citing paper and each candidate sentence
in a reference paper can be regarded respectively as a set of N-grams (N=1, 2, 3). We
used some Jaccard-like similarities to calculate the overlap between the N-gram set of
the citation text and the one of each candidate cited sentence. In addition to the standard
Jaccard similarity metric, two variations, MJS1 (see eq. 3) and MJS2 (see eq. 4) were
also considered.</p>
        <p>( ,  ) = || ∩∪ || =</p>
        <p>| ∩ |
| |+| |−| ∩ |


1( ,  ) = | ∩ |</p>
        <p>| |
2( ,  ) = | ∩ |
|B|
(2)
(3)
(4)
Additionally, there are two different applicable weighting methods, respectively
IDFweighting and T-statistic weighting, to improve Jaccard similarity metric.
B25 measure. If we make a comparison of cited text identification issue with
information retrieval, citation text may correspond to query, while cited sentence to
document to be retrieved. Since B25 measure is well-known metric in classical information
retrieval, it may also serve as similarity metric in our work.</p>
        <p>In total, there were 36 similarity metrics (as shown in Table 1), which were used in
the first-stage similarity ranking.
(5)</p>
        <p>We used the training data of the CL-SciSumm 2017 dataset to evaluate the
performance of each kind of similarity metric. We found that the 33th feature (T-statistic
weighted tri-gram MJS1 similarity) is best metric for top-K selection in the first stage.
From the result like as shown in Table 2, we selected top-5 selection based on T-statistic
weighted tri-gram MJS1 similarity, which was also used as a baseline system.
3.3</p>
      </sec>
      <sec id="sec-3-4">
        <title>Supervised Listwise ranking based on NN model</title>
        <p>Recently, deep learning approaches have gradually gained popularity in artificial
intelligent problems. However, it is usually applied in classification problem, but not in
ranking problem.</p>
        <p>
          For ranking, there are three kinds of methods: pointwise, pairwise and listwise.
Pairwise ranking is almost same effect with classification, in other words, this task is
formalized as classification of object pairs (correct sample and incorrect sample), such as
RankSVM [
          <xref ref-type="bibr" rid="ref4 ref7">4, 7</xref>
          ] and RankNet [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ]. Pairwise ranking can be referred as multiple
classification, therefore, its performance can be depend on the individual classification,
however, in cited text identification, the performance of the individual classifier is not ideal.
In contrast, listwise ranking approach directly consider overall rank of all samples of
the list, but it is needed to annotate the order of all samples. In the cited text
identification task, however, it is very difficult to annotate all the order of samples.
        </p>
        <p>Therefore, we proposed a novel listwise ranking model, namely CiteListNet, based
on deep learnings. Given citance  and reference sentence list  1, . . . ,   , the our task
can be formulated as following:
 (  ,   ) = 
( (  ,   )) =</p>
        <p>exp( (  ,  ))
∑ exp( (  ,  ))</p>
        <p>: max ∑ ,   ∗  (  ,   )
  = {</p>
        <p>1,   
0,    




  
  




(6)
(7)
(8)
Where F(.) denotes a deep learning model, which can be implemented as any
architecture.</p>
        <p>In above optimization, we only consider the order of positive sample, but not
negative sample. The more the score of positive sample is, the higher the order of it is. If its
score is over 0.5, then its order become the first.</p>
        <p>In addition to similarity-based metric, we also involved the section information in
our feature set. Section information represents in which kind of section the reference
sentence appears in the reference paper. The kind of section is decided based on
rulebased method. Table 3 shows the kinds of section which frequently appear in the
computational linguistics field.
Introduction
Related work
Method
Conclusion</p>
        <p>No
7
8
9
10
11</p>
        <sec id="sec-3-4-1">
          <title>Kind of section</title>
        </sec>
        <sec id="sec-3-4-2">
          <title>Analysis</title>
        </sec>
        <sec id="sec-3-4-3">
          <title>Experiment</title>
        </sec>
        <sec id="sec-3-4-4">
          <title>Data</title>
        </sec>
        <sec id="sec-3-4-5">
          <title>Future work</title>
        </sec>
        <sec id="sec-3-4-6">
          <title>Other</title>
          <p>4</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experiments and Result</title>
      <p>
        The CL-SciSumm 2017 datasets contain 30 topics as training data and 10 topics as test
data [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], where each topic consists of a reference paper and some citing papers that
involves the citation to the reference paper. In this section, we will exploit these datasets
to demonstrate our proposed method.
      </p>
      <p>To train the list-wise ranking model, we prepared the subset from the training data
through the top-5 sentence selection as described in Section 3.2.</p>
      <p>In our experiment, the top-2 listwise ranking showed the best performance on the
training data where its F1-score is observed as 17.9%.</p>
      <p>In order to validate the generalization ability of our method, we try to evaluate the
trained model on the test data in the CL-SciSumm 2017 datasets. The result
demonstrated that the top-2 listwise ranking showed a best performance and that the
overfitting did not occur during our listwise ranking training.</p>
      <p>
        We also compared our method with earlier approaches as shown in Table 4. To
evaluate the performance of the different systems, two kinds of metric is used: sentence ID
overlap and ROUGE scoring [
        <xref ref-type="bibr" rid="ref5 ref6 ref8">5, 6, 8</xref>
        ]. The former use the raw number of overlapping
sentences between system output and the gold standard to calculate the precision, recall
and F1-score. This evaluation also exploit the micro-average and macro-average
respectively. As shown in Table 4, our proposed listwise rank model showed the best
performance over all the kinds of evaluation metric. Furthermore, baseline (MJS-based
top-5 sentence selection) also showed the comparable performance.
      </p>
      <p>The experiment results demonstrate that our proposed method outperforms any prior
approaches.</p>
      <p>
        As shown in Table 5, top-2 ranking also showed a good performance on the test data
in CL-SciSumm 19 Shared Task.
1 In Table 4, the result of the prior works is from Jaidka’s report [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ].
      </p>
    </sec>
    <sec id="sec-5">
      <title>Discussion</title>
      <p>In this paper, we focused on the cited text identification issue and proposed a novel
method, namely CiteListNet, based on listwise ranking.</p>
      <p>The main contributions of this paper are two points: feature selection and a novel
listwise ranking model.</p>
      <p>First, we adopted new features to identify cited text. We modified Jaccard similarity
to consider how much the cited sentence covers the citation text and how much the
citation text covers the cited text. The former is verified to be useful for identifying
cited text, while the letter is less helpful than other features. When using the Jaccard
similarity, it is recommended to use N-gram language model. Moreover, we found that
T-statistics that represents how much the word is probable to appear in the cited text
could be used as a useful weight. The experimental result shows that T-statistics
weighted Modified Jaccard Similarity feature based on tri-gram language model is the
most useful feature and MJS-based top-5 sentence selection shows the comparable
performance, although no training is done.</p>
      <p>Second, we proposed a novel listwise ranking model based on deep learning
CiteListNet. We found that our proposed method is stable and did not occur overfitting
problem during the training process. The result of our experiment shows that our novel
method outperforms other prior approaches.</p>
      <p>In this paper, it was still not considered that cited text could be represented as a
paragraph. In this case, the relationship between the cited sentence and the citation text
may have a different characteristic. In the future work, we will focus this issue, and
apply this research result to various bibliometric task.</p>
      <p>Acknowledgement. This paper is one of the research outputs of the project supported
by the State Key Program of National Social Science Foundation of China (Grant No.
17ATQ001).</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Burges</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shaked</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Renshaw</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          , et al.:
          <article-title>Learning to rank using gradient descent</article-title>
          .
          <source>In: Proceedings of ICML</source>
          <year>2005</year>
          , pp.
          <fpage>89</fpage>
          -
          <lpage>96</lpage>
          . (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>Dipankar</given-names>
            <surname>Das</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.M.</given-names>
            ,
            <surname>Pramanick</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          :
          <article-title>Employing Word Vectors for Identifying, Classifying and Summarizing Scientific Documents</article-title>
          .
          <source>In: Proc. of the 2nd Joint Workshop on Bibliometric-enhanced Inforamtion Retrieval and Natural Language Processing for Digital Libraries (BIRND</source>
          <year>2017</year>
          ). Tokyo (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Yeh</surname>
            <given-names>J.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hsu</surname>
            <given-names>T.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tsai C.J.</surname>
          </string-name>
          , et al.:
          <article-title>On identifying Cited Texts for Citances and Classifying Their Discourse Facets by Classification Techniques</article-title>
          .
          <source>Journal of Information Science and Engineering</source>
          , Vol.
          <volume>35</volume>
          (
          <issue>1</issue>
          ),
          <fpage>61</fpage>
          -
          <lpage>86</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Herbrich</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Graepel</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Obermayer</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Support vector learning for ordinal regression</article-title>
          .
          <source>In: Proceedings of ICANN</source>
          <year>1999</year>
          , pp.
          <fpage>97</fpage>
          -
          <lpage>102</lpage>
          . (
          <year>1999</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Jaidka</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Jain</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          , et al.:
          <article-title>The CL-SciSumm Shared Task 2017: Results and Key Insights</article-title>
          .
          <source>In: Proc. of the 2nd Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRND</source>
          <year>2017</year>
          ), Tokyo (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Jaidka</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rustagi</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          , et al.:
          <article-title>Insights from cl-scisumm 2016: the faceted scientific document summarization shared task</article-title>
          .
          <source>International Journal on Digital Libraries</source>
          , Vol.
          <volume>19</volume>
          (
          <issue>2-3</issue>
          ),
          <fpage>163</fpage>
          -
          <lpage>171</lpage>
          (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Lee</surname>
            ,
            <given-names>C.P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lin</surname>
            <given-names>C.J.</given-names>
          </string-name>
          :
          <string-name>
            <surname>Large-Scale Linear</surname>
            <given-names>RankSVM</given-names>
          </string-name>
          ,
          <source>Neural Computation</source>
          , Vol.
          <volume>26</volume>
          ,
          <fpage>781</fpage>
          -
          <lpage>817</lpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Lin</surname>
            ,
            <given-names>C.Y.</given-names>
          </string-name>
          :
          <article-title>Rouge: A package for automatic evaluation of summaries</article-title>
          .
          <source>In: Proceedings of the Workshop on Text Summarization Branches Out (WAS</source>
          <year>2004</year>
          ).
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Ma</surname>
          </string-name>
          , S.,
          <string-name>
            <surname>Xu</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          , Zhang,
          <string-name>
            <surname>C.</surname>
          </string-name>
          :
          <article-title>Automatic identification of cited text spans: a multi-classifier approach over imbalanced dataset</article-title>
          .
          <source>Scientometrics</source>
          , Vol.
          <volume>116</volume>
          ,
          <fpage>1303</fpage>
          -
          <lpage>1330</lpage>
          . (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Mercer</surname>
          </string-name>
          , J.:
          <article-title>Functions of positive and negative type and their connection with the theory of integral equations</article-title>
          .
          <source>Philosophical Transactions of the Royal Society A</source>
          , Vol.
          <volume>209</volume>
          (
          <issue>441</issue>
          -
          <fpage>458</fpage>
          ),
          <fpage>415</fpage>
          -
          <lpage>446</lpage>
          . (
          <year>1909</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Ou</surname>
            ,
            <given-names>S.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>H.I.</given-names>
          </string-name>
          :
          <article-title>Unsupervised Citation Sentence Identification Based on Similarity Measurement</article-title>
          . In: International Conference on Information. Springer, Cham (
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Chandrasekaran</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yasunaga</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Radev</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Freitag</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kan</surname>
            , M.-
            <given-names>Y.</given-names>
          </string-name>
          <article-title>"Overview and Results: CL-SciSumm SharedTask 2019"</article-title>
          ,
          <source>In Proceedings of the 4th Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural Language Processing for Digital Libraries (BIRNDL</source>
          <year>2019</year>
          ) @
          <source>SIGIR</source>
          <year>2019</year>
          , Paris, France.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>