diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-11-17 17:18:15 +0100 |
---|---|---|
committer | Albert Krewinkel <albert+github@zeitkraut.de> | 2020-11-19 22:09:52 +0100 |
commit | d2862421315a0be59e2e2ec088b9b24928224aa2 (patch) | |
tree | 6b4f6fc17364f639969754c3ade00fee604a9bb3 /test/tables/students.jats_archiving | |
parent | 0c8ab8a12f69cdb2868ffe223aa938044fd447b4 (diff) | |
download | pandoc-d2862421315a0be59e2e2ec088b9b24928224aa2.tar.gz |
JATS writer: support advanced table features
Diffstat (limited to 'test/tables/students.jats_archiving')
-rw-r--r-- | test/tables/students.jats_archiving | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/test/tables/students.jats_archiving b/test/tables/students.jats_archiving new file mode 100644 index 000000000..3edf58a7f --- /dev/null +++ b/test/tables/students.jats_archiving @@ -0,0 +1,56 @@ +<table-wrap> + <caption> + <p>List of Students</p> + </caption> + <table id="students"> + <colgroup> + <col width="50%" /> + <col width="50%" /> + </colgroup> + <thead> + <tr> + <th align="center">Student ID</th> + <th align="center">Name</th> + </tr> + </thead> + <tbody> + <tr> + <th align="left" colspan="2">Computer Science</th> + </tr> + <tr> + <td align="left">3741255</td> + <td align="left">Jones, Martha</td> + </tr> + <tr> + <td align="left">4077830</td> + <td align="left">Pierce, Benjamin</td> + </tr> + <tr> + <td align="left">5151701</td> + <td align="left">Kirk, James</td> + </tr> + </tbody> + <tbody> + <tr> + <th align="left" colspan="2">Russian Literature</th> + </tr> + <tr> + <td align="left">3971244</td> + <td align="left">Nim, Victor</td> + </tr> + </tbody> + <tbody> + <tr> + <th align="left" colspan="2">Astrophysics</th> + </tr> + <tr> + <td align="left">4100332</td> + <td align="left">Petrov, Alexandra</td> + </tr> + <tr> + <td align="left">4100332</td> + <td align="left">Toyota, Hiroko</td> + </tr> + </tbody> + </table> +</table-wrap> |