metanorma-csa 2.6.1 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -68,11 +68,7 @@
68
68
 
69
69
  <!-- Cover Page -->
70
70
  <fo:page-sequence master-reference="cover-page" force-page-count="no-force">
71
- <fo:static-content flow-name="xsl-footnote-separator">
72
- <fo:block>
73
- <fo:leader leader-pattern="rule" leader-length="30%"/>
74
- </fo:block>
75
- </fo:static-content>
71
+ <xsl:call-template name="insertFootnoteSeparatorCommon"/>
76
72
  <fo:static-content flow-name="cover-page-header">
77
73
  <fo:block-container height="2.5mm" background-color="rgb(55, 243, 244)">
78
74
  <fo:block font-size="1pt"> </fo:block>
@@ -109,11 +105,8 @@
109
105
 
110
106
  <!-- Copyright, Content, Foreword, etc. pages -->
111
107
  <fo:page-sequence master-reference="document" initial-page-number="2" format="1" force-page-count="no-force">
112
- <fo:static-content flow-name="xsl-footnote-separator">
113
- <fo:block>
114
- <fo:leader leader-pattern="rule" leader-length="30%"/>
115
- </fo:block>
116
- </fo:static-content>
108
+
109
+ <xsl:call-template name="insertFootnoteSeparatorCommon"/>
117
110
  <xsl:call-template name="insertHeaderFooter"/>
118
111
  <fo:flow flow-name="xsl-region-body">
119
112
 
@@ -230,11 +223,7 @@
230
223
  <xsl:call-template name="getPageSequenceOrientation"/>
231
224
  </xsl:attribute>
232
225
 
233
- <fo:static-content flow-name="xsl-footnote-separator">
234
- <fo:block>
235
- <fo:leader leader-pattern="rule" leader-length="30%"/>
236
- </fo:block>
237
- </fo:static-content>
226
+ <xsl:call-template name="insertFootnoteSeparatorCommon"/>
238
227
  <xsl:call-template name="insertHeaderFooter"/>
239
228
  <fo:flow flow-name="xsl-region-body">
240
229
 
@@ -559,12 +548,6 @@
559
548
  </xsl:if>
560
549
  </xsl:template>
561
550
 
562
- <xsl:template match="csa:fn/csa:p">
563
- <fo:block>
564
- <xsl:apply-templates/>
565
- </fo:block>
566
- </xsl:template>
567
-
568
551
  <xsl:template match="csa:ul | csa:ol" mode="list" priority="2">
569
552
  <xsl:choose>
570
553
  <xsl:when test="not(ancestor::csa:ul) and not(ancestor::csa:ol)">
@@ -1462,12 +1445,16 @@
1462
1445
  </xsl:template>
1463
1446
 
1464
1447
  <xsl:attribute-set name="table-fn-number-style">
1465
- <xsl:attribute name="font-size">80%</xsl:attribute>
1466
- <xsl:attribute name="padding-right">5mm</xsl:attribute>
1448
+ <!-- <xsl:attribute name="padding-right">5mm</xsl:attribute> -->
1467
1449
 
1468
1450
  </xsl:attribute-set> <!-- table-fn-number-style -->
1469
1451
 
1470
- <xsl:template name="refine_table-fn-number-style">
1452
+ <xsl:attribute-set name="table-fmt-fn-label-style">
1453
+ <xsl:attribute name="font-size">80%</xsl:attribute>
1454
+
1455
+ </xsl:attribute-set> <!-- table-fmt-fn-label-style -->
1456
+
1457
+ <xsl:template name="refine_table-fmt-fn-label-style">
1471
1458
 
1472
1459
  </xsl:template>
1473
1460
 
@@ -1482,11 +1469,18 @@
1482
1469
  </xsl:attribute-set>
1483
1470
 
1484
1471
  <xsl:attribute-set name="figure-fn-number-style">
1485
- <xsl:attribute name="font-size">80%</xsl:attribute>
1486
1472
  <xsl:attribute name="padding-right">5mm</xsl:attribute>
1473
+ </xsl:attribute-set> <!-- figure-fn-number-style -->
1474
+
1475
+ <xsl:attribute-set name="figure-fmt-fn-label-style">
1476
+ <xsl:attribute name="font-size">80%</xsl:attribute>
1487
1477
  <xsl:attribute name="vertical-align">super</xsl:attribute>
1488
1478
 
1489
- </xsl:attribute-set>
1479
+ </xsl:attribute-set> <!-- figure-fmt-fn-label-style -->
1480
+
1481
+ <xsl:template name="refine_figure-fmt-fn-label-style">
1482
+
1483
+ </xsl:template>
1490
1484
 
1491
1485
  <xsl:attribute-set name="figure-fn-body-style">
1492
1486
  <xsl:attribute name="text-align">justify</xsl:attribute>
@@ -2999,9 +2993,13 @@
2999
2993
 
3000
2994
  <xsl:variable name="isNoteOrFnExist" select="./*[local-name()='note'][not(@type = 'units')] or ./*[local-name()='example'] or .//*[local-name()='fn'][local-name(..) != 'name'] or ./*[local-name()='source']"/>
3001
2995
  <xsl:if test="$isNoteOrFnExist = 'true'">
3002
-
3003
- <xsl:attribute name="border-bottom">0pt solid black</xsl:attribute><!-- set 0pt border, because there is a separete table below for footer -->
3004
-
2996
+ <!-- <xsl:choose>
2997
+ <xsl:when test="$namespace = 'plateau'"></xsl:when>
2998
+ <xsl:otherwise>
2999
+
3000
+ </xsl:otherwise>
3001
+ </xsl:choose> -->
3002
+ <xsl:attribute name="border-bottom">0pt solid black</xsl:attribute><!-- set 0pt border, because there is a separete table below for footer -->
3005
3003
  </xsl:if>
3006
3004
 
3007
3005
  <xsl:choose>
@@ -3048,7 +3046,7 @@
3048
3046
  <xsl:apply-templates select="*[local-name()='thead']" mode="process_tbody"/>
3049
3047
  </xsl:when>
3050
3048
  <xsl:otherwise>
3051
- <xsl:apply-templates select="node()[not(local-name() = 'name') and not(local-name() = 'note') and not(local-name() = 'example') and not(local-name() = 'dl') and not(local-name() = 'source') and not(local-name() = 'p') and not(local-name() = 'thead') and not(local-name() = 'tfoot')]"/> <!-- process all table' elements, except name, header, footer, note, source and dl which render separaterely -->
3049
+ <xsl:apply-templates select="node()[not(local-name() = 'name') and not(local-name() = 'note') and not(local-name() = 'example') and not(local-name() = 'dl') and not(local-name() = 'source') and not(local-name() = 'p') and not(local-name() = 'thead') and not(local-name() = 'tfoot') and not(local-name() = 'fmt-footnote-container')]"/> <!-- process all table' elements, except name, header, footer, note, source and dl which render separaterely -->
3052
3050
  </xsl:otherwise>
3053
3051
  </xsl:choose>
3054
3052
 
@@ -3059,13 +3057,26 @@
3059
3057
 
3060
3058
  <xsl:variable name="colgroup" select="*[local-name()='colgroup']"/>
3061
3059
 
3062
- <xsl:for-each select="*[local-name()='tbody']"><!-- select context to tbody -->
3063
- <xsl:call-template name="insertTableFooterInSeparateTable">
3064
- <xsl:with-param name="table_attributes" select="$table_attributes"/>
3065
- <xsl:with-param name="colwidths" select="$colwidths"/>
3066
- <xsl:with-param name="colgroup" select="$colgroup"/>
3067
- </xsl:call-template>
3068
- </xsl:for-each>
3060
+ <!-- https://github.com/metanorma/metanorma-plateau/issues/171 -->
3061
+
3062
+ <xsl:for-each select="*[local-name()='tbody']"><!-- select context to tbody -->
3063
+ <xsl:call-template name="insertTableFooterInSeparateTable">
3064
+ <xsl:with-param name="table_attributes" select="$table_attributes"/>
3065
+ <xsl:with-param name="colwidths" select="$colwidths"/>
3066
+ <xsl:with-param name="colgroup" select="$colgroup"/>
3067
+ </xsl:call-template>
3068
+ </xsl:for-each>
3069
+
3070
+ <!-- https://github.com/metanorma/metanorma-plateau/issues/171
3071
+ <xsl:if test="$namespace = 'plateau'">
3072
+ <xsl:apply-templates select="*[not(local-name()='thead') and not(local-name()='tbody') and not(local-name()='tfoot') and not(local-name()='name')]" />
3073
+ <xsl:for-each select="*[local-name()='tbody']"> - select context to tbody -
3074
+ <xsl:variable name="table_fn_block">
3075
+ <xsl:call-template name="table_fn_display" />
3076
+ </xsl:variable>
3077
+ <xsl:copy-of select="$table_fn_block"/>
3078
+ </xsl:for-each>
3079
+ </xsl:if> -->
3069
3080
 
3070
3081
  <xsl:if test="*[local-name()='bookmark']"> <!-- special case: table/bookmark -->
3071
3082
  <fo:block keep-with-previous="always" line-height="0.1">
@@ -3852,6 +3863,8 @@
3852
3863
 
3853
3864
  <xsl:template name="setTableRowAttributes">
3854
3865
 
3866
+ <xsl:call-template name="setColors"/>
3867
+
3855
3868
  </xsl:template> <!-- setTableRowAttributes -->
3856
3869
  <!-- ===================== -->
3857
3870
  <!-- END Table's row processing -->
@@ -3903,6 +3916,7 @@
3903
3916
  </xsl:attribute>
3904
3917
  </xsl:if>
3905
3918
  <xsl:call-template name="display-align"/>
3919
+ <xsl:call-template name="setColors"/>
3906
3920
  </xsl:template>
3907
3921
 
3908
3922
  <xsl:template name="display-align">
@@ -3918,6 +3932,29 @@
3918
3932
  </xsl:if>
3919
3933
  </xsl:template>
3920
3934
 
3935
+ <xsl:template name="setColors">
3936
+ <xsl:variable name="styles__">
3937
+ <xsl:call-template name="split">
3938
+ <xsl:with-param name="pText" select="concat(@style,';')"/>
3939
+ <xsl:with-param name="sep" select="';'"/>
3940
+ </xsl:call-template>
3941
+ </xsl:variable>
3942
+ <xsl:variable name="quot">"</xsl:variable>
3943
+ <xsl:variable name="styles_">
3944
+ <xsl:for-each select="xalan:nodeset($styles__)/item">
3945
+ <xsl:variable name="key" select="normalize-space(substring-before(., ':'))"/>
3946
+ <xsl:variable name="value" select="normalize-space(substring-after(translate(.,$quot,''), ':'))"/>
3947
+ <xsl:if test="$key = 'color' or $key = 'background-color'">
3948
+ <style name="{$key}"><xsl:value-of select="$value"/></style>
3949
+ </xsl:if>
3950
+ </xsl:for-each>
3951
+ </xsl:variable>
3952
+ <xsl:variable name="styles" select="xalan:nodeset($styles_)"/>
3953
+ <xsl:for-each select="$styles/style">
3954
+ <xsl:attribute name="{@name}"><xsl:value-of select="."/></xsl:attribute>
3955
+ </xsl:for-each>
3956
+ </xsl:template>
3957
+
3921
3958
  <!-- cell in table body, footer -->
3922
3959
  <xsl:template match="*[local-name()='td']" name="td">
3923
3960
  <fo:table-cell xsl:use-attribute-sets="table-cell-style"> <!-- text-align="{@align}" -->
@@ -3929,17 +3966,28 @@
3929
3966
 
3930
3967
  <xsl:call-template name="refine_table-cell-style"/>
3931
3968
 
3969
+ <xsl:call-template name="setTableCellAttributes"/>
3970
+
3932
3971
  <xsl:if test=".//*[local-name() = 'table']"> <!-- if there is nested table -->
3933
3972
  <xsl:attribute name="padding-right">1mm</xsl:attribute>
3934
3973
  </xsl:if>
3935
3974
 
3936
- <xsl:call-template name="setTableCellAttributes"/>
3937
-
3938
3975
  <xsl:if test="$isGenerateTableIF = 'true'">
3939
3976
  <xsl:attribute name="border">1pt solid black</xsl:attribute> <!-- border is mandatory, to determine page width -->
3940
3977
  <xsl:attribute name="text-align">left</xsl:attribute>
3941
3978
  </xsl:if>
3942
3979
 
3980
+ <xsl:if test="$isGenerateTableIF = 'false'">
3981
+ <xsl:if test="@colspan and *[local-name() = 'note'][@type = 'units']">
3982
+ <xsl:attribute name="text-align">right</xsl:attribute>
3983
+ <xsl:attribute name="border">none</xsl:attribute>
3984
+ <xsl:attribute name="border-bottom"><xsl:value-of select="$table-border"/></xsl:attribute>
3985
+ <xsl:attribute name="border-top">1pt solid white</xsl:attribute>
3986
+ <xsl:attribute name="border-left">1pt solid white</xsl:attribute>
3987
+ <xsl:attribute name="border-right">1pt solid white</xsl:attribute>
3988
+ </xsl:if>
3989
+ </xsl:if>
3990
+
3943
3991
  <fo:block role="SKIP">
3944
3992
 
3945
3993
  <xsl:if test="$isGenerateTableIF = 'true'">
@@ -3958,7 +4006,8 @@
3958
4006
  </fo:table-cell>
3959
4007
  </xsl:template> <!-- td -->
3960
4008
 
3961
- <xsl:template match="*[local-name()='table']/*[local-name()='note' or local-name() = 'example']" priority="2">
4009
+ <!-- table/note, table/example, table/tfoot//note, table/tfoot//example -->
4010
+ <xsl:template match="*[local-name()='table']/*[local-name()='note' or local-name() = 'example'] | *[local-name()='table']/*[local-name()='tfoot']//*[local-name()='note' or local-name() = 'example']" priority="2">
3962
4011
 
3963
4012
  <fo:block xsl:use-attribute-sets="table-note-style">
3964
4013
  <xsl:copy-of select="@id"/>
@@ -3979,65 +4028,54 @@
3979
4028
 
3980
4029
  </xsl:template> <!-- table/note -->
3981
4030
 
3982
- <xsl:template match="*[local-name()='table']/*[local-name()='note' or local-name()='example']/*[local-name()='p']" priority="2">
4031
+ <xsl:template match="*[local-name()='table']/*[local-name()='note' or local-name()='example']/*[local-name()='p'] | *[local-name()='table']/*[local-name()='tfoot']//*[local-name()='note' or local-name()='example']/*[local-name()='p']" priority="2">
3983
4032
  <xsl:apply-templates/>
3984
4033
  </xsl:template>
3985
4034
 
3986
4035
  <!-- ===================== -->
3987
4036
  <!-- Footnotes processing -->
3988
4037
  <!-- ===================== -->
4038
+
4039
+ <!-- document text (not figures, or tables) footnotes -->
4040
+ <xsl:variable name="footnotes_">
4041
+ <xsl:for-each select="//*[local-name() = 'fmt-footnote-container']/*[local-name() = 'fmt-fn-body']"> <!-- commented *[local-name() = 'metanorma']/, because there are fn in figure or table name -->
4042
+ <!-- <xsl:copy-of select="."/> -->
4043
+ <xsl:variable name="update_xml_step1">
4044
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
4045
+ </xsl:variable>
4046
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
4047
+ </xsl:for-each>
4048
+ </xsl:variable>
4049
+ <xsl:variable name="footnotes" select="xalan:nodeset($footnotes_)"/>
4050
+
3989
4051
  <!--
3990
4052
  <fn reference="1">
3991
4053
  <p id="_8e5cf917-f75a-4a49-b0aa-1714cb6cf954">Formerly denoted as 15 % (m/m).</p>
3992
4054
  </fn>
3993
4055
  -->
3994
- <!-- footnotes in text (title, bibliography, main body, table's, figure's names), not for tables, figures -->
4056
+ <!-- footnotes in text (title, bibliography, main body), not for tables, figures and names --> <!-- table's, figure's names -->
4057
+ <!-- fn in text -->
3995
4058
  <xsl:template match="*[local-name() = 'fn'][not(ancestor::*[(local-name() = 'table' or local-name() = 'figure')] and not(ancestor::*[local-name() = 'name']))]" priority="2" name="fn">
3996
4059
 
3997
- <!-- list of footnotes to calculate actual footnotes number -->
4060
+ <!-- list of unique footnotes -->
3998
4061
  <xsl:variable name="p_fn_">
3999
4062
  <xsl:call-template name="get_fn_list"/>
4000
- <!-- <xsl:choose>
4001
- <xsl:when test="$namespace = 'jis'">
4002
- <xsl:call-template name="get_fn_list_for_element"/>
4003
- </xsl:when>
4004
- <xsl:otherwise>
4005
- <xsl:call-template name="get_fn_list"/>
4006
- </xsl:otherwise>
4007
- </xsl:choose> -->
4008
4063
  </xsl:variable>
4009
4064
  <xsl:variable name="p_fn" select="xalan:nodeset($p_fn_)"/>
4010
4065
 
4011
4066
  <xsl:variable name="gen_id" select="generate-id(.)"/>
4012
- <xsl:variable name="lang" select="ancestor::*[local-name() = 'metanorma']/*[local-name()='bibdata']//*[local-name()='language'][@current = 'true']"/>
4013
- <xsl:variable name="reference_">
4014
- <xsl:value-of select="@reference"/>
4015
- <xsl:if test="normalize-space(@reference) = ''"><xsl:value-of select="$gen_id"/></xsl:if>
4016
- </xsl:variable>
4017
- <xsl:variable name="reference" select="normalize-space($reference_)"/>
4067
+
4018
4068
  <!-- fn sequence number in document -->
4019
- <xsl:variable name="current_fn_number">
4020
- <xsl:choose>
4021
- <xsl:when test="@current_fn_number"><xsl:value-of select="@current_fn_number"/></xsl:when> <!-- for BSI -->
4022
- <xsl:otherwise>
4023
- <xsl:value-of select="count($p_fn//fn[@reference = $reference]/preceding-sibling::fn) + 1"/>
4024
- </xsl:otherwise>
4025
- </xsl:choose>
4026
- </xsl:variable>
4069
+ <xsl:variable name="current_fn_number" select="@reference"/>
4070
+
4027
4071
  <xsl:variable name="current_fn_number_text">
4028
4072
 
4029
4073
  <xsl:value-of select="$current_fn_number"/>
4030
4074
 
4031
4075
  </xsl:variable>
4032
4076
 
4033
- <xsl:variable name="ref_id">
4034
- <xsl:choose>
4035
- <xsl:when test="normalize-space(@ref_id) != ''"><xsl:value-of select="@ref_id"/></xsl:when>
4036
- <xsl:otherwise>
4037
- <xsl:value-of select="concat('footnote_', $lang, '_', $reference, '_', $current_fn_number)"/>
4038
- </xsl:otherwise>
4039
- </xsl:choose>
4040
- </xsl:variable>
4077
+ <xsl:variable name="ref_id" select="@target"/>
4078
+
4041
4079
  <xsl:variable name="footnote_inline">
4042
4080
  <fo:inline role="Reference">
4043
4081
 
@@ -4082,7 +4120,9 @@
4082
4120
  <xsl:when test="normalize-space(@skip_footnote_body) = 'true'">
4083
4121
  <xsl:copy-of select="$footnote_inline"/>
4084
4122
  </xsl:when>
4123
+ <!-- <xsl:when test="$footnotes//*[local-name() = 'fmt-fn-body'][@id = $ref_id] or normalize-space(@skip_footnote_body) = 'false'"> -->
4085
4124
  <xsl:when test="$p_fn//fn[@gen_id = $gen_id] or normalize-space(@skip_footnote_body) = 'false'">
4125
+
4086
4126
  <fo:footnote xsl:use-attribute-sets="fn-style" role="SKIP">
4087
4127
  <xsl:copy-of select="$footnote_inline"/>
4088
4128
  <fo:footnote-body role="Note">
@@ -4099,7 +4139,10 @@
4099
4139
  <xsl:value-of select="$current_fn_number_text"/>
4100
4140
 
4101
4141
  </fo:inline>
4102
- <xsl:apply-templates/>
4142
+ <!-- <xsl:apply-templates /> -->
4143
+ <!-- <ref_id><xsl:value-of select="$ref_id"/></ref_id>
4144
+ <here><xsl:copy-of select="$footnotes"/></here> -->
4145
+ <xsl:apply-templates select="$footnotes/*[local-name() = 'fmt-fn-body'][@id = $ref_id]"/>
4103
4146
  </xsl:variable>
4104
4147
 
4105
4148
  <fo:block xsl:use-attribute-sets="fn-body-style" role="SKIP">
@@ -4153,77 +4196,136 @@
4153
4196
  </xsl:choose>
4154
4197
  </xsl:template>
4155
4198
 
4156
- <xsl:template name="get_fn_list_for_element">
4157
- <xsl:choose>
4158
- <xsl:when test="@current_fn_number"> <!-- footnote reference number calculated already -->
4159
- <fn gen_id="{generate-id(.)}">
4160
- <xsl:copy-of select="@*"/>
4161
- <xsl:copy-of select="node()"/>
4162
- </fn>
4163
- </xsl:when>
4164
- <xsl:otherwise>
4165
- <xsl:for-each select="ancestor::*[local-name() = 'ul' or local-name() = 'ol'][1]">
4166
- <xsl:variable name="element_id" select="@id"/>
4167
- <xsl:for-each select=".//*[local-name() = 'fn'][generate-id(.)=generate-id(key('kfn',@reference)[1])]">
4168
- <!-- copy unique fn -->
4169
- <fn gen_id="{generate-id(.)}">
4170
- <xsl:copy-of select="@*"/>
4171
- <xsl:copy-of select="node()"/>
4172
- </fn>
4173
- </xsl:for-each>
4174
- </xsl:for-each>
4175
- </xsl:otherwise>
4176
- </xsl:choose>
4177
- </xsl:template>
4178
4199
  <!-- ============================ -->
4179
4200
  <!-- table's footnotes rendering -->
4180
4201
  <!-- ============================ -->
4181
- <xsl:template name="table_fn_display">
4182
- <xsl:variable name="references">
4183
4202
 
4203
+ <!-- table/fmt-footnote-container -->
4204
+ <xsl:template match="*[local-name() = 'table']/*[local-name() = 'fmt-footnote-container']"/>
4205
+
4206
+ <xsl:template match="*[local-name() = 'table']/*[local-name() = 'tfoot']//*[local-name() = 'fmt-footnote-container']">
4207
+ <xsl:for-each select=".">
4208
+ <xsl:call-template name="table_fn_display"/>
4209
+ </xsl:for-each>
4210
+ </xsl:template>
4211
+
4212
+ <xsl:template name="table_fn_display">
4213
+ <!-- <xsl:variable name="references">
4214
+ <xsl:if test="$namespace = 'bsi'">
4215
+ <xsl:for-each select="..//*[local-name()='fn'][local-name(..) = 'name']">
4216
+ <xsl:call-template name="create_fn" />
4217
+ </xsl:for-each>
4218
+ </xsl:if>
4184
4219
  <xsl:for-each select="..//*[local-name()='fn'][local-name(..) != 'name']">
4185
- <xsl:call-template name="create_fn"/>
4220
+ <xsl:call-template name="create_fn" />
4186
4221
  </xsl:for-each>
4187
- </xsl:variable>
4188
-
4189
- <xsl:for-each select="xalan:nodeset($references)//fn">
4222
+ </xsl:variable> -->
4223
+ <!-- <xsl:for-each select="xalan:nodeset($references)//fn">
4190
4224
  <xsl:variable name="reference" select="@reference"/>
4191
- <xsl:if test="not(preceding-sibling::*[@reference = $reference])"> <!-- only unique reference puts in note-->
4225
+ <xsl:if test="not(preceding-sibling::*[@reference = $reference])"> --> <!-- only unique reference puts in note-->
4226
+ <xsl:for-each select="..//*[local-name() = 'fmt-footnote-container']/*[local-name() = 'fmt-fn-body']">
4192
4227
 
4193
4228
  <fo:block xsl:use-attribute-sets="table-fn-style">
4229
+ <xsl:copy-of select="@id"/>
4194
4230
  <xsl:call-template name="refine_table-fn-style"/>
4195
- <fo:inline id="{@id}" xsl:use-attribute-sets="table-fn-number-style">
4196
- <xsl:call-template name="refine_table-fn-number-style"/>
4197
-
4198
- <xsl:value-of select="@reference"/>
4199
4231
 
4200
- <!-- commented https://github.com/metanorma/isodoc/issues/614 -->
4201
- <!-- <xsl:if test="$namespace = 'itu'">
4202
- <xsl:text>)</xsl:text>
4203
- </xsl:if> -->
4232
+ <xsl:apply-templates select=".//*[local-name() = 'fmt-fn-label']">
4233
+ <xsl:with-param name="process">true</xsl:with-param>
4234
+ </xsl:apply-templates>
4204
4235
 
4205
- </fo:inline>
4206
4236
  <fo:inline xsl:use-attribute-sets="table-fn-body-style">
4207
- <xsl:copy-of select="./node()"/>
4237
+ <!-- <xsl:copy-of select="./node()"/> -->
4238
+ <xsl:apply-templates/>
4208
4239
  </fo:inline>
4209
4240
 
4210
4241
  </fo:block>
4211
4242
 
4212
- </xsl:if>
4243
+ <!-- </xsl:if> -->
4213
4244
  </xsl:for-each>
4214
4245
  </xsl:template> <!-- table_fn_display -->
4215
4246
 
4247
+ <!-- fmt-fn-body/fmt-fn-label in text -->
4248
+ <xsl:template match="*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']"/>
4249
+
4250
+ <!-- table//fmt-fn-body//fmt-fn-label -->
4251
+ <xsl:template match="*[local-name() = 'table']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']"> <!-- *[local-name() = 'fmt-footnote-container']/ -->
4252
+ <xsl:param name="process">false</xsl:param>
4253
+ <xsl:if test="$process = 'true'">
4254
+ <fo:inline xsl:use-attribute-sets="table-fn-number-style" role="SKIP">
4255
+
4256
+ <!-- tab is padding-right -->
4257
+ <xsl:apply-templates select=".//*[local-name() = 'tab']">
4258
+ <xsl:with-param name="process">true</xsl:with-param>
4259
+ </xsl:apply-templates>
4260
+
4261
+ <!-- <xsl:if test="$namespace = 'bipm'">
4262
+ <fo:inline font-style="normal">(</fo:inline>
4263
+ </xsl:if> -->
4264
+
4265
+ <!-- <xsl:if test="$namespace = 'plateau'">
4266
+ <xsl:text>※</xsl:text>
4267
+ </xsl:if> -->
4268
+
4269
+ <!-- <xsl:value-of select="@reference"/> -->
4270
+ <!-- <xsl:value-of select="normalize-space()"/> -->
4271
+ <xsl:apply-templates/>
4272
+
4273
+ <!-- <xsl:if test="$namespace = 'bipm'">
4274
+ <fo:inline font-style="normal">)</fo:inline>
4275
+ </xsl:if> -->
4276
+
4277
+ <!-- commented https://github.com/metanorma/isodoc/issues/614 -->
4278
+ <!-- <xsl:if test="$namespace = 'itu'">
4279
+ <xsl:text>)</xsl:text>
4280
+ </xsl:if> -->
4281
+
4282
+ <!-- <xsl:if test="$namespace = 'plateau'">
4283
+ <xsl:text>:</xsl:text>
4284
+ </xsl:if> -->
4285
+
4286
+ </fo:inline>
4287
+ </xsl:if>
4288
+ </xsl:template> <!-- fmt-fn-body//fmt-fn-label -->
4289
+
4290
+ <xsl:template match="*[local-name() = 'table']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']//*[local-name() = 'tab']" priority="5">
4291
+ <xsl:param name="process">false</xsl:param>
4292
+ <xsl:if test="$process = 'true'">
4293
+ <xsl:attribute name="padding-right">5mm</xsl:attribute>
4294
+
4295
+ </xsl:if>
4296
+ </xsl:template>
4297
+
4298
+ <xsl:template match="*[local-name() = 'table']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']//*[local-name() = 'sup']" priority="5">
4299
+ <fo:inline xsl:use-attribute-sets="table-fmt-fn-label-style" role="SKIP">
4300
+ <xsl:call-template name="refine_table-fmt-fn-label-style"/>
4301
+ <xsl:apply-templates/>
4302
+ </fo:inline>
4303
+ </xsl:template>
4304
+
4305
+ <!-- <xsl:template match="*[local-name() = 'fmt-footnote-container']/*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']//*[local-name() = 'tab']"/> -->
4306
+ <!--
4216
4307
  <xsl:template name="create_fn">
4217
4308
  <fn reference="{@reference}" id="{@reference}_{ancestor::*[@id][1]/@id}">
4218
- <xsl:if test="ancestor::*[local-name()='table'][1]/@id"> <!-- for footnotes in tables -->
4309
+ <xsl:if test="ancestor::*[local-name()='table'][1]/@id"> - for footnotes in tables -
4219
4310
  <xsl:attribute name="id">
4220
4311
  <xsl:value-of select="concat(@reference, '_', ancestor::*[local-name()='table'][1]/@id)"/>
4221
4312
  </xsl:attribute>
4222
4313
  </xsl:if>
4223
-
4224
- <xsl:apply-templates/>
4314
+ <xsl:if test="$namespace = 'itu'">
4315
+ <xsl:if test="ancestor::*[local-name()='preface']">
4316
+ <xsl:attribute name="preface">true</xsl:attribute>
4317
+ </xsl:if>
4318
+ </xsl:if>
4319
+ <xsl:if test="$namespace = 'ogc' or $namespace = 'ogc-white-paper'">
4320
+ <xsl:attribute name="id">
4321
+ <xsl:value-of select="@reference"/>
4322
+ <xsl:text>_</xsl:text>
4323
+ <xsl:value-of select="ancestor::*[local-name()='table'][1]/@id"/>
4324
+ </xsl:attribute>
4325
+ </xsl:if>
4326
+ <xsl:apply-templates />
4225
4327
  </fn>
4226
- </xsl:template>
4328
+ </xsl:template> -->
4227
4329
 
4228
4330
  <!-- footnotes for table's name rendering -->
4229
4331
  <xsl:template name="table_name_fn_display">
@@ -4242,123 +4344,171 @@
4242
4344
  <!-- ============================ -->
4243
4345
  <!-- figure's footnotes rendering -->
4244
4346
  <!-- ============================ -->
4245
- <xsl:template name="fn_display_figure"> <!-- figure_fn_display -->
4246
4347
 
4247
- <!-- current figure id -->
4248
- <xsl:variable name="figure_id_">
4249
- <xsl:value-of select="@id"/>
4250
- <xsl:if test="not(@id)"><xsl:value-of select="generate-id()"/></xsl:if>
4251
- </xsl:variable>
4252
- <xsl:variable name="figure_id" select="normalize-space($figure_id_)"/>
4348
+ <!-- figure/fmt-footnote-container -->
4349
+ <xsl:template match="*[local-name() = 'figure']//*[local-name() = 'fmt-footnote-container']"/>
4350
+
4351
+ <!-- TO DO: remove, now the figure fn in figure/dl/... https://github.com/metanorma/isodoc/issues/658 -->
4352
+ <xsl:template name="figure_fn_display">
4253
4353
 
4254
- <!-- all footnotes relates to the current figure -->
4255
4354
  <xsl:variable name="references">
4256
- <xsl:for-each select=".//*[local-name()='fn'][not(parent::*[local-name()='name'])][ancestor::*[local-name() = 'figure'][1][@id = $figure_id]]">
4257
- <fn reference="{@reference}" id="{@reference}_{ancestor::*[@id][1]/@id}">
4258
- <xsl:apply-templates/>
4259
- </fn>
4355
+ <xsl:for-each select="./*[local-name() = 'fmt-footnote-container']/*[local-name() = 'fmt-fn-body']">
4356
+ <xsl:variable name="curr_id" select="@id"/>
4357
+ <!-- <curr_id><xsl:value-of select="$curr_id"/></curr_id>
4358
+ <curr><xsl:copy-of select="."/></curr>
4359
+ <ancestor><xsl:copy-of select="ancestor::*[local-name() = 'figure'][.//*[local-name() = 'name'][.//*[local-name() = 'fn']]]"/></ancestor> -->
4360
+ <xsl:choose>
4361
+ <!-- skip figure/name/fn -->
4362
+ <xsl:when test="ancestor::*[local-name() = 'figure'][.//*[local-name() = 'name'][.//*[local-name() = 'fn'][@target = $curr_id]]]"><!-- skip --></xsl:when>
4363
+ <xsl:otherwise>
4364
+ <xsl:element name="figure" namespace="{$namespace_full}">
4365
+ <xsl:element name="fmt-footnote-container" namespace="{$namespace_full}">
4366
+ <xsl:copy-of select="."/>
4367
+ </xsl:element>
4368
+ </xsl:element>
4369
+ </xsl:otherwise>
4370
+ </xsl:choose>
4260
4371
  </xsl:for-each>
4261
4372
  </xsl:variable>
4373
+ <!-- <references><xsl:copy-of select="$references"/></references> -->
4262
4374
 
4263
- <xsl:if test="xalan:nodeset($references)//fn">
4375
+ <xsl:if test="xalan:nodeset($references)//*[local-name() = 'fmt-fn-body']">
4264
4376
 
4265
4377
  <xsl:variable name="key_iso">
4266
4378
 
4267
4379
  </xsl:variable>
4268
4380
 
4269
4381
  <fo:block>
4382
+ <!-- current hierarchy is 'figure' element -->
4383
+ <xsl:variable name="following_dl_colwidths">
4384
+ <xsl:if test="*[local-name() = 'dl']"><!-- if there is a 'dl', then set the same columns width as for 'dl' -->
4385
+ <xsl:variable name="simple-table">
4386
+ <!-- <xsl:variable name="doc_ns">
4387
+ <xsl:if test="$namespace = 'bipm'">bipm</xsl:if>
4388
+ </xsl:variable>
4389
+ <xsl:variable name="ns">
4390
+ <xsl:choose>
4391
+ <xsl:when test="normalize-space($doc_ns) != ''">
4392
+ <xsl:value-of select="normalize-space($doc_ns)"/>
4393
+ </xsl:when>
4394
+ <xsl:otherwise>
4395
+ <xsl:value-of select="substring-before(name(/*), '-')"/>
4396
+ </xsl:otherwise>
4397
+ </xsl:choose>
4398
+ </xsl:variable> -->
4270
4399
 
4271
- <!-- current hierarchy is 'figure' element -->
4272
- <xsl:variable name="following_dl_colwidths">
4273
- <xsl:if test="*[local-name() = 'dl']"><!-- if there is a 'dl', then set the same columns width as for 'dl' -->
4274
- <xsl:variable name="simple-table">
4275
- <!-- <xsl:variable name="doc_ns">
4276
- <xsl:if test="$namespace = 'bipm'">bipm</xsl:if>
4277
- </xsl:variable>
4278
- <xsl:variable name="ns">
4279
- <xsl:choose>
4280
- <xsl:when test="normalize-space($doc_ns) != ''">
4281
- <xsl:value-of select="normalize-space($doc_ns)"/>
4282
- </xsl:when>
4283
- <xsl:otherwise>
4284
- <xsl:value-of select="substring-before(name(/*), '-')"/>
4285
- </xsl:otherwise>
4286
- </xsl:choose>
4287
- </xsl:variable> -->
4288
-
4289
- <xsl:for-each select="*[local-name() = 'dl'][1]">
4290
- <tbody>
4291
- <xsl:apply-templates mode="dl"/>
4292
- </tbody>
4293
- </xsl:for-each>
4294
- </xsl:variable>
4295
-
4296
- <xsl:call-template name="calculate-column-widths">
4297
- <xsl:with-param name="cols-count" select="2"/>
4298
- <xsl:with-param name="table" select="$simple-table"/>
4299
- </xsl:call-template>
4300
-
4301
- </xsl:if>
4302
- </xsl:variable>
4303
-
4304
- <xsl:variable name="maxlength_dt">
4305
4400
  <xsl:for-each select="*[local-name() = 'dl'][1]">
4306
- <xsl:call-template name="getMaxLength_dt"/>
4401
+ <tbody>
4402
+ <xsl:apply-templates mode="dl"/>
4403
+ </tbody>
4307
4404
  </xsl:for-each>
4308
4405
  </xsl:variable>
4309
4406
 
4310
- <fo:table width="95%" table-layout="fixed">
4311
- <xsl:if test="normalize-space($key_iso) = 'true'">
4312
- <xsl:attribute name="font-size">10pt</xsl:attribute>
4407
+ <xsl:call-template name="calculate-column-widths">
4408
+ <xsl:with-param name="cols-count" select="2"/>
4409
+ <xsl:with-param name="table" select="$simple-table"/>
4410
+ </xsl:call-template>
4313
4411
 
4314
- </xsl:if>
4315
- <xsl:choose>
4316
- <!-- if there 'dl', then set same columns width -->
4317
- <xsl:when test="xalan:nodeset($following_dl_colwidths)//column">
4318
- <xsl:call-template name="setColumnWidth_dl">
4319
- <xsl:with-param name="colwidths" select="$following_dl_colwidths"/>
4320
- <xsl:with-param name="maxlength_dt" select="$maxlength_dt"/>
4321
- </xsl:call-template>
4322
- </xsl:when>
4323
- <xsl:otherwise>
4324
- <fo:table-column column-width="5%"/>
4325
- <fo:table-column column-width="95%"/>
4326
- </xsl:otherwise>
4327
- </xsl:choose>
4328
- <fo:table-body>
4329
- <xsl:for-each select="xalan:nodeset($references)//fn">
4330
- <xsl:variable name="reference" select="@reference"/>
4331
- <xsl:if test="not(preceding-sibling::*[@reference = $reference])"> <!-- only unique reference puts in note-->
4332
- <fo:table-row>
4333
- <fo:table-cell>
4334
- <fo:block>
4335
- <fo:inline id="{@id}" xsl:use-attribute-sets="figure-fn-number-style">
4336
- <xsl:value-of select="@reference"/>
4412
+ </xsl:if>
4413
+ </xsl:variable>
4414
+
4415
+ <xsl:variable name="maxlength_dt">
4416
+ <xsl:for-each select="*[local-name() = 'dl'][1]">
4417
+ <xsl:call-template name="getMaxLength_dt"/>
4418
+ </xsl:for-each>
4419
+ </xsl:variable>
4420
+
4421
+ <fo:table width="95%" table-layout="fixed">
4422
+ <xsl:if test="normalize-space($key_iso) = 'true'">
4423
+ <xsl:attribute name="font-size">10pt</xsl:attribute>
4424
+
4425
+ </xsl:if>
4426
+ <xsl:choose>
4427
+ <!-- if there 'dl', then set same columns width -->
4428
+ <xsl:when test="xalan:nodeset($following_dl_colwidths)//column">
4429
+ <xsl:call-template name="setColumnWidth_dl">
4430
+ <xsl:with-param name="colwidths" select="$following_dl_colwidths"/>
4431
+ <xsl:with-param name="maxlength_dt" select="$maxlength_dt"/>
4432
+ </xsl:call-template>
4433
+ </xsl:when>
4434
+ <xsl:otherwise>
4435
+ <fo:table-column column-width="5%"/>
4436
+ <fo:table-column column-width="95%"/>
4437
+ </xsl:otherwise>
4438
+ </xsl:choose>
4439
+ <fo:table-body>
4440
+ <!-- <xsl:for-each select="xalan:nodeset($references)//fn"> -->
4441
+ <xsl:for-each select="xalan:nodeset($references)//*[local-name() = 'fmt-fn-body']">
4442
+
4443
+ <xsl:variable name="reference" select="@reference"/>
4444
+ <!-- <xsl:if test="not(preceding-sibling::*[@reference = $reference])"> --> <!-- only unique reference puts in note-->
4445
+ <fo:table-row>
4446
+ <fo:table-cell>
4447
+ <fo:block>
4448
+
4449
+ <fo:inline id="{@id}" xsl:use-attribute-sets="figure-fmt-fn-label-style">
4450
+ <!-- <xsl:attribute name="padding-right">0mm</xsl:attribute> -->
4451
+ <!-- <xsl:value-of select="@reference"/> -->
4452
+ <xsl:value-of select="normalize-space(.//*[local-name() = 'fmt-fn-label'])"/>
4337
4453
  </fo:inline>
4338
- </fo:block>
4339
- </fo:table-cell>
4340
- <fo:table-cell>
4341
- <fo:block xsl:use-attribute-sets="figure-fn-body-style">
4342
- <xsl:if test="normalize-space($key_iso) = 'true'">
4343
4454
 
4344
- <xsl:attribute name="margin-bottom">0</xsl:attribute>
4455
+ </fo:block>
4456
+ </fo:table-cell>
4457
+ <fo:table-cell>
4458
+ <fo:block xsl:use-attribute-sets="figure-fn-body-style">
4459
+ <xsl:if test="normalize-space($key_iso) = 'true'">
4345
4460
 
4346
- </xsl:if>
4347
- <xsl:copy-of select="./node()"/>
4348
- </fo:block>
4349
- </fo:table-cell>
4350
- </fo:table-row>
4351
- </xsl:if>
4352
- </xsl:for-each>
4353
- </fo:table-body>
4354
- </fo:table>
4461
+ <xsl:attribute name="margin-bottom">0</xsl:attribute>
4355
4462
 
4463
+ </xsl:if>
4464
+
4465
+ <!-- <xsl:copy-of select="./node()"/> -->
4466
+ <xsl:apply-templates/>
4467
+ </fo:block>
4468
+ </fo:table-cell>
4469
+ </fo:table-row>
4470
+ <!-- </xsl:if> -->
4471
+ </xsl:for-each>
4472
+ </fo:table-body>
4473
+ </fo:table>
4356
4474
  </fo:block>
4357
4475
  </xsl:if>
4358
- </xsl:template> <!-- fn_display_figure -->
4476
+ </xsl:template> <!-- figure_fn_display -->
4477
+
4478
+ <xsl:template match="*[local-name() = 'figure']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']"> <!-- *[local-name() = 'fmt-footnote-container']/ -->
4479
+ <xsl:param name="process">false</xsl:param>
4480
+ <xsl:if test="$process = 'true'">
4481
+ <fo:inline xsl:use-attribute-sets="figure-fn-number-style" role="SKIP">
4482
+ <xsl:attribute name="padding-right">0mm</xsl:attribute>
4483
+
4484
+ <!-- tab is padding-right -->
4485
+ <xsl:apply-templates select=".//*[local-name() = 'tab']">
4486
+ <xsl:with-param name="process">true</xsl:with-param>
4487
+ </xsl:apply-templates>
4488
+
4489
+ <xsl:apply-templates/>
4490
+
4491
+ </fo:inline>
4492
+ </xsl:if>
4493
+ </xsl:template> <!-- figure//fmt-fn-body//fmt-fn-label -->
4494
+
4495
+ <xsl:template match="*[local-name() = 'figure']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']//*[local-name() = 'tab']" priority="5">
4496
+ <xsl:param name="process">false</xsl:param>
4497
+ <xsl:if test="$process = 'true'">
4498
+
4499
+ </xsl:if>
4500
+ </xsl:template>
4501
+
4502
+ <xsl:template match="*[local-name() = 'figure']//*[local-name() = 'fmt-fn-body']//*[local-name() = 'fmt-fn-label']//*[local-name() = 'sup']" priority="5">
4503
+ <fo:inline xsl:use-attribute-sets="figure-fmt-fn-label-style" role="SKIP">
4504
+ <xsl:call-template name="refine_figure-fmt-fn-label-style"/>
4505
+ <xsl:apply-templates/>
4506
+ </fo:inline>
4507
+ </xsl:template>
4359
4508
 
4360
4509
  <!-- added for https://github.com/metanorma/isodoc/issues/607 -->
4361
4510
  <!-- figure's footnote label -->
4511
+ <!-- figure/dl[@key = 'true']/dt/p/sup -->
4362
4512
  <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'dl'][@key = 'true']/*[local-name() = 'dt']/ *[local-name() = 'p'][count(node()[normalize-space() != '']) = 1]/*[local-name() = 'sup']" priority="3">
4363
4513
  <xsl:variable name="key_iso">
4364
4514
 
@@ -4367,7 +4517,7 @@
4367
4517
  <xsl:attribute name="font-size">10pt</xsl:attribute>
4368
4518
 
4369
4519
  </xsl:if>
4370
- <fo:inline xsl:use-attribute-sets="figure-fn-number-style"> <!-- id="{@id}" -->
4520
+ <fo:inline xsl:use-attribute-sets="figure-fn-number-style figure-fmt-fn-label-style"> <!-- id="{@id}" -->
4371
4521
  <!-- <xsl:value-of select="@reference"/> -->
4372
4522
  <xsl:apply-templates/>
4373
4523
  </fo:inline>
@@ -4377,38 +4527,65 @@
4377
4527
  <!-- END: figure's footnotes rendering -->
4378
4528
  <!-- ============================ -->
4379
4529
 
4380
- <!-- fn reference in the text rendering (for instance, 'some text 1) some text' ) -->
4530
+ <!-- fn reference in the table rendering (for instance, 'some text 1) some text' ) -->
4531
+ <!-- fn --> <!-- in table --> <!-- for figure see <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'fn']" priority="2"/> -->
4381
4532
  <xsl:template match="*[local-name()='fn']">
4382
4533
  <fo:inline xsl:use-attribute-sets="fn-reference-style">
4383
4534
 
4384
4535
  <xsl:call-template name="refine_fn-reference-style"/>
4385
4536
 
4386
- <fo:basic-link internal-destination="{@reference}_{ancestor::*[@id][1]/@id}" fox:alt-text="footnote {@reference}"> <!-- @reference | ancestor::*[local-name()='clause'][1]/@id-->
4387
- <xsl:if test="ancestor::*[local-name()='table'][1]/@id"> <!-- for footnotes in tables -->
4388
- <xsl:attribute name="internal-destination">
4537
+ <!-- <fo:basic-link internal-destination="{@reference}_{ancestor::*[@id][1]/@id}" fox:alt-text="footnote {@reference}"> --> <!-- @reference | ancestor::*[local-name()='clause'][1]/@id-->
4538
+ <fo:basic-link internal-destination="{@target}" fox:alt-text="footnote {@reference}">
4539
+ <!-- <xsl:if test="ancestor::*[local-name()='table'][1]/@id"> --> <!-- for footnotes in tables -->
4540
+ <!-- <xsl:attribute name="internal-destination">
4389
4541
  <xsl:value-of select="concat(@reference, '_', ancestor::*[local-name()='table'][1]/@id)"/>
4390
4542
  </xsl:attribute>
4391
4543
  </xsl:if>
4544
+ <xsl:if test="$namespace = 'ogc' or $namespace = 'ogc-white-paper'">
4545
+ <xsl:attribute name="internal-destination">
4546
+ <xsl:value-of select="@reference"/><xsl:text>_</xsl:text>
4547
+ <xsl:value-of select="ancestor::*[local-name()='table'][1]/@id"/>
4548
+ </xsl:attribute>
4549
+ </xsl:if> -->
4550
+ <!-- <xsl:if test="$namespace = 'plateau'">
4551
+ <xsl:text>※</xsl:text>
4552
+ </xsl:if> -->
4553
+ <!-- <xsl:value-of select="@reference"/> -->
4392
4554
 
4393
- <xsl:value-of select="@reference"/>
4555
+ <xsl:value-of select="normalize-space(*[local-name() = 'fmt-fn-label'])"/>
4394
4556
 
4557
+ <!-- <xsl:if test="$namespace = 'bsi'">
4558
+ <xsl:text>)</xsl:text>
4559
+ </xsl:if> -->
4395
4560
  <!-- commented, https://github.com/metanorma/isodoc/issues/614 -->
4396
4561
  <!-- <xsl:if test="$namespace = 'jis'">
4397
4562
  <fo:inline font-weight="normal">)</fo:inline>
4398
4563
  </xsl:if> -->
4399
4564
  </fo:basic-link>
4400
4565
  </fo:inline>
4401
- </xsl:template>
4566
+ </xsl:template> <!-- fn -->
4402
4567
 
4568
+ <!-- fn/text() -->
4403
4569
  <xsl:template match="*[local-name()='fn']/text()[normalize-space() != '']">
4404
4570
  <fo:inline role="SKIP"><xsl:value-of select="."/></fo:inline>
4405
4571
  </xsl:template>
4406
4572
 
4407
- <xsl:template match="*[local-name()='fn']//*[local-name()='p']">
4573
+ <!-- fn//p fmt-fn-body//p -->
4574
+ <xsl:template match="*[local-name()='fn']//*[local-name()='p'] | *[local-name() = 'fmt-fn-body']//*[local-name()='p']">
4408
4575
  <fo:inline role="P">
4409
4576
  <xsl:apply-templates/>
4410
4577
  </fo:inline>
4411
4578
  </xsl:template>
4579
+
4580
+ <xsl:template name="insertFootnoteSeparatorCommon">
4581
+ <xsl:param name="leader_length">30%</xsl:param>
4582
+ <fo:static-content flow-name="xsl-footnote-separator">
4583
+ <fo:block>
4584
+ <fo:leader leader-pattern="rule" leader-length="{$leader_length}"/>
4585
+ </fo:block>
4586
+ </fo:static-content>
4587
+ </xsl:template>
4588
+
4412
4589
  <!-- ===================== -->
4413
4590
  <!-- END Footnotes processing -->
4414
4591
  <!-- ===================== -->
@@ -4685,11 +4862,11 @@
4685
4862
  <xsl:variable name="isContainsKeepTogetherTag" select="normalize-space($isContainsKeepTogetherTag_)"/>
4686
4863
  <!-- isContainsExpressReference=<xsl:value-of select="$isContainsExpressReference"/> -->
4687
4864
 
4688
- <xsl:call-template name="setColumnWidth_dl">
4689
- <xsl:with-param name="colwidths" select="$colwidths"/>
4690
- <xsl:with-param name="maxlength_dt" select="$maxlength_dt"/>
4691
- <xsl:with-param name="isContainsKeepTogetherTag" select="$isContainsKeepTogetherTag"/>
4692
- </xsl:call-template>
4865
+ <xsl:call-template name="setColumnWidth_dl">
4866
+ <xsl:with-param name="colwidths" select="$colwidths"/>
4867
+ <xsl:with-param name="maxlength_dt" select="$maxlength_dt"/>
4868
+ <xsl:with-param name="isContainsKeepTogetherTag" select="$isContainsKeepTogetherTag"/>
4869
+ </xsl:call-template>
4693
4870
 
4694
4871
  <fo:table-body>
4695
4872
 
@@ -4723,6 +4900,14 @@
4723
4900
 
4724
4901
  </xsl:template> <!-- END: dl -->
4725
4902
 
4903
+ <xsl:template match="@*|node()" mode="dt_clean">
4904
+ <xsl:copy>
4905
+ <xsl:apply-templates select="@*|node()" mode="dt_clean"/>
4906
+ </xsl:copy>
4907
+ </xsl:template>
4908
+
4909
+ <xsl:template match="*[local-name() = 'asciimath']" mode="dt_clean"/>
4910
+
4726
4911
  <!-- caption for figure key and another caption, https://github.com/metanorma/isodoc/issues/607 -->
4727
4912
  <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'p'][@keep-with-next = 'true' and *[local-name() = 'strong']]" priority="3">
4728
4913
  <fo:block text-align="left" margin-bottom="12pt" keep-with-next="always">
@@ -4752,10 +4937,12 @@
4752
4937
  <!-- ignore 'p' with 'where' in formula, before 'dl' -->
4753
4938
  <xsl:template match="*[local-name() = 'formula']/*[local-name() = 'p' and @keep-with-next = 'true' and following-sibling::*[1][local-name() = 'dl']]"/>
4754
4939
 
4940
+ <!-- dl/name -->
4755
4941
  <xsl:template match="*[local-name() = 'dl']/*[local-name() = 'name']">
4756
4942
  <xsl:param name="process">false</xsl:param>
4757
4943
  <xsl:if test="$process = 'true'">
4758
4944
  <fo:block xsl:use-attribute-sets="dl-name-style">
4945
+
4759
4946
  <xsl:apply-templates/>
4760
4947
  </fo:block>
4761
4948
  </xsl:if>
@@ -4769,6 +4956,10 @@
4769
4956
  <!-- <colwidths><xsl:copy-of select="$colwidths"/></colwidths> -->
4770
4957
 
4771
4958
  <xsl:choose>
4959
+ <!-- <xsl:when test="@class = 'formula_dl' and local-name(..) = 'figure'">
4960
+ <fo:table-column column-width="10%"/>
4961
+ <fo:table-column column-width="90%"/>
4962
+ </xsl:when> -->
4772
4963
  <xsl:when test="xalan:nodeset($colwidths)/autolayout">
4773
4964
  <xsl:call-template name="insertTableColumnWidth">
4774
4965
  <xsl:with-param name="colwidths" select="$colwidths"/>
@@ -5564,7 +5755,7 @@
5564
5755
  <xsl:choose>
5565
5756
  <xsl:when test="ancestor::*[local-name() = 'table']"><xsl:apply-templates/></xsl:when>
5566
5757
  <xsl:when test="following-sibling::*[2][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']">
5567
- <fo:inline keep-with-next.within-line="always"><xsl:apply-templates/></fo:inline>
5758
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:apply-templates/></fo:inline>
5568
5759
  </xsl:when>
5569
5760
  <xsl:otherwise>
5570
5761
  <xsl:apply-templates/>
@@ -5572,7 +5763,7 @@
5572
5763
  </xsl:choose>
5573
5764
  </xsl:template>
5574
5765
  <xsl:template match="text()[not(ancestor::*[local-name() = 'table']) and preceding-sibling::*[1][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear'] and following-sibling::*[1][local-name() = 'span'][@class = 'stdpublisher' or @class = 'stddocNumber' or @class = 'stddocPartNumber' or @class = 'stdyear']]" priority="2">
5575
- <fo:inline keep-with-next.within-line="always"><xsl:value-of select="."/></fo:inline>
5766
+ <fo:inline keep-with-next.within-line="always" role="SKIP"><xsl:value-of select="."/></fo:inline>
5576
5767
  </xsl:template>
5577
5768
 
5578
5769
  <xsl:template match="*[local-name() = 'span'][contains(@style, 'text-transform:none')]//text()" priority="5">
@@ -6612,24 +6803,26 @@
6612
6803
  <xsl:apply-templates select="." mode="mathml"/>
6613
6804
  </xsl:variable>
6614
6805
 
6615
- <fo:instream-foreign-object fox:alt-text="Math">
6806
+ <fo:instream-foreign-object fox:alt-text="Math" fox:actual-text="Math">
6616
6807
 
6617
6808
  <xsl:call-template name="refine_mathml_insteam_object_style"/>
6618
6809
 
6619
- <!-- put MathML in Actual Text -->
6620
- <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
6621
- <xsl:attribute name="fox:actual-text">
6622
- <xsl:value-of select="$mathml_content"/>
6623
- </xsl:attribute>
6624
-
6625
- <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
6626
- <xsl:if test="normalize-space($asciimath_text_) != ''">
6627
- <!-- put Mathin Alternate Text -->
6628
- <xsl:attribute name="fox:alt-text">
6629
- <xsl:value-of select="$asciimath_text_"/>
6810
+ <xsl:if test="$isGenerateTableIF = 'false'">
6811
+ <!-- put MathML in Actual Text -->
6812
+ <!-- DEBUG: mathml_content=<xsl:value-of select="$mathml_content"/> -->
6813
+ <xsl:attribute name="fox:actual-text">
6814
+ <xsl:value-of select="$mathml_content"/>
6630
6815
  </xsl:attribute>
6816
+
6817
+ <!-- <xsl:if test="$add_math_as_text = 'true'"> -->
6818
+ <xsl:if test="normalize-space($asciimath_text_) != ''">
6819
+ <!-- put Mathin Alternate Text -->
6820
+ <xsl:attribute name="fox:alt-text">
6821
+ <xsl:value-of select="$asciimath_text_"/>
6822
+ </xsl:attribute>
6823
+ </xsl:if>
6824
+ <!-- </xsl:if> -->
6631
6825
  </xsl:if>
6632
- <!-- </xsl:if> -->
6633
6826
 
6634
6827
  <xsl:copy-of select="xalan:nodeset($mathml)"/>
6635
6828
 
@@ -6892,6 +7085,27 @@
6892
7085
  <xsl:variable name="target__" select="substring-after($target_, concat('_', $inputxml_filename_prefix, '_attachments', '/'))"/>
6893
7086
  <xsl:value-of select="concat('url(embedded-file:', $target__, ')')"/>
6894
7087
  </xsl:when> -->
7088
+
7089
+ <!-- <xsl:when test="not(starts-with(@target, 'http:') or starts-with(@target, 'https') or starts-with(@target, 'www') or starts-with(@target, 'mailto') or starts-with(@target, 'ftp'))">
7090
+ <xsl:variable name="target_" select="translate(@target, '\', '/')"/>
7091
+ <xsl:variable name="filename">
7092
+ <xsl:call-template name="substring-after-last">
7093
+ <xsl:with-param name="value" select="$target_"/>
7094
+ <xsl:with-param name="delimiter" select="'/'"/>
7095
+ </xsl:call-template>
7096
+ </xsl:variable>
7097
+ <xsl:variable name="target_filepath" select="concat($inputxml_basepath, @target)"/>
7098
+ <xsl:variable name="file_exists" select="normalize-space(java:exists(java:java.io.File.new($target_filepath)))"/>
7099
+ <xsl:choose>
7100
+ <xsl:when test="$file_exists = 'true'">
7101
+ <xsl:value-of select="concat('url(embedded-file:', $filename, ')')"/>
7102
+ </xsl:when>
7103
+ <xsl:otherwise>
7104
+ <xsl:value-of select="normalize-space(@target)"/>
7105
+ </xsl:otherwise>
7106
+ </xsl:choose>
7107
+ </xsl:when> -->
7108
+
6895
7109
  <xsl:otherwise>
6896
7110
  <xsl:value-of select="normalize-space(@target)"/>
6897
7111
  </xsl:otherwise>
@@ -7200,7 +7414,7 @@
7200
7414
 
7201
7415
  <xsl:template name="refine_note_block_style">
7202
7416
 
7203
- </xsl:template>
7417
+ </xsl:template> <!-- refine_note_block_style -->
7204
7418
 
7205
7419
  <xsl:template match="*[local-name() = 'note']/*[local-name() = 'p']">
7206
7420
  <xsl:variable name="num"><xsl:number/></xsl:variable>
@@ -7392,10 +7606,21 @@
7392
7606
  </xsl:template>
7393
7607
 
7394
7608
  <xsl:template name="showFigureKey">
7395
- <xsl:for-each select="*[local-name() = 'note'][not(@type = 'units')]">
7396
- <xsl:call-template name="note"/>
7609
+ <xsl:for-each select="*[(local-name() = 'note' and not(@type = 'units')) or local-name() = 'example']">
7610
+ <xsl:choose>
7611
+ <xsl:when test="local-name() = 'note'">
7612
+ <xsl:call-template name="note"/>
7613
+ </xsl:when>
7614
+ <xsl:when test="local-name() = 'example'">
7615
+ <xsl:call-template name="example"/>
7616
+ </xsl:when>
7617
+ <xsl:otherwise>
7618
+ <xsl:apply-templates select="."/>
7619
+ </xsl:otherwise>
7620
+ </xsl:choose>
7397
7621
  </xsl:for-each>
7398
- <xsl:call-template name="fn_display_figure"/>
7622
+ <!-- TO DO: remove, now the figure fn in figure/dl/... https://github.com/metanorma/isodoc/issues/658 -->
7623
+ <xsl:call-template name="figure_fn_display"/>
7399
7624
  </xsl:template>
7400
7625
 
7401
7626
  <xsl:template match="*[local-name() = 'figure'][@class = 'pseudocode']">
@@ -8289,10 +8514,10 @@
8289
8514
  <xsl:when test="@type = 'section-title'">
8290
8515
  <xsl:value-of select="*[local-name() = 'span'][@class = 'fmt-caption-delim'][1]/preceding-sibling::node()"/>
8291
8516
  <xsl:text>: </xsl:text>
8292
- <xsl:copy-of select="*[local-name() = 'span'][@class = 'fmt-caption-delim'][1]/following-sibling::node()[not(local-name = 'fmt-xref-label')]"/>
8517
+ <xsl:copy-of select="*[local-name() = 'span'][@class = 'fmt-caption-delim'][1]/following-sibling::node()[not(local-name() = 'fmt-xref-label')]"/>
8293
8518
  </xsl:when>
8294
8519
  <xsl:otherwise>
8295
- <xsl:copy-of select="*[local-name() = 'span'][@class = 'fmt-caption-delim'][1]/following-sibling::node()[not(local-name = 'fmt-xref-label')]"/>
8520
+ <xsl:copy-of select="*[local-name() = 'span'][@class = 'fmt-caption-delim'][1]/following-sibling::node()[not(local-name() = 'fmt-xref-label')]"/>
8296
8521
  </xsl:otherwise>
8297
8522
  </xsl:choose>
8298
8523
  </xsl:when>
@@ -8357,6 +8582,8 @@
8357
8582
  <xsl:template match="*[local-name() = 'origin']" mode="contents"/>
8358
8583
  <xsl:template match="*[local-name() = 'erefstack ']" mode="contents"/>
8359
8584
 
8585
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="contents" priority="3"/>
8586
+
8360
8587
  <xsl:template match="*[local-name() = 'stem']" mode="bookmarks"/>
8361
8588
  <xsl:template match="*[local-name() = 'fmt-stem']" mode="bookmarks">
8362
8589
  <xsl:apply-templates mode="bookmarks"/>
@@ -8378,6 +8605,8 @@
8378
8605
  <xsl:template match="*[local-name() = 'origin']" mode="bookmarks"/>
8379
8606
  <xsl:template match="*[local-name() = 'erefstack ']" mode="bookmarks"/>
8380
8607
 
8608
+ <xsl:template match="*[local-name() = 'requirement'] | *[local-name() = 'recommendation'] | *[local-name() = 'permission']" mode="bookmarks" priority="3"/>
8609
+
8381
8610
  <!-- Bookmarks -->
8382
8611
  <xsl:template name="addBookmarks">
8383
8612
  <xsl:param name="contents"/>
@@ -8623,9 +8852,15 @@
8623
8852
  </xsl:if>
8624
8853
  </xsl:template>
8625
8854
 
8855
+ <!-- figure/fn -->
8626
8856
  <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'fn']" priority="2"/>
8627
- <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'note']"/>
8857
+ <!-- figure/note -->
8858
+ <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'note']" priority="2"/>
8859
+ <!-- figure/example -->
8860
+ <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'example']" priority="2"/>
8628
8861
 
8862
+ <!-- figure/note[@type = 'units'] -->
8863
+ <!-- image/note[@type = 'units'] -->
8629
8864
  <xsl:template match="*[local-name() = 'figure']/*[local-name() = 'note'][@type = 'units'] | *[local-name() = 'image']/*[local-name() = 'note'][@type = 'units']" priority="2">
8630
8865
  <fo:block text-align="right" keep-with-next="always">
8631
8866
  <xsl:apply-templates/>
@@ -8746,6 +8981,7 @@
8746
8981
  </xsl:choose>
8747
8982
  </xsl:template>
8748
8983
 
8984
+ <!-- fn -->
8749
8985
  <xsl:template match="*[local-name() = 'fn']" mode="contents"/>
8750
8986
  <xsl:template match="*[local-name() = 'fn']" mode="bookmarks"/>
8751
8987
 
@@ -9643,7 +9879,7 @@
9643
9879
  text line 1
9644
9880
  text line 2
9645
9881
  -->
9646
- <xsl:template match="*[local-name() = 'example']">
9882
+ <xsl:template match="*[local-name() = 'example']" name="example">
9647
9883
 
9648
9884
  <fo:block-container id="{@id}" xsl:use-attribute-sets="example-style" role="SKIP">
9649
9885
 
@@ -9749,6 +9985,7 @@
9749
9985
 
9750
9986
  </xsl:template>
9751
9987
 
9988
+ <!-- example/name -->
9752
9989
  <xsl:template match="*[local-name() = 'example']/*[local-name() = 'name']">
9753
9990
  <xsl:param name="fo_element">block</xsl:param>
9754
9991
 
@@ -9774,7 +10011,8 @@
9774
10011
 
9775
10012
  </xsl:template>
9776
10013
 
9777
- <xsl:template match="*[local-name() = 'table']/*[local-name() = 'example']/*[local-name() = 'name']">
10014
+ <!-- table/example/name, table/tfoot//example/name -->
10015
+ <xsl:template match="*[local-name() = 'table']/*[local-name() = 'example']/*[local-name() = 'name'] | *[local-name() = 'table']/*[local-name() = 'tfoot']//*[local-name() = 'example']/*[local-name() = 'name']">
9778
10016
  <fo:inline xsl:use-attribute-sets="example-name-style">
9779
10017
 
9780
10018
  <xsl:apply-templates/>
@@ -10246,21 +10484,32 @@
10246
10484
  <!-- ========== -->
10247
10485
 
10248
10486
  <xsl:variable name="reviews_">
10249
- <xsl:for-each select="//*[local-name() = 'review'][@from]">
10487
+ <xsl:for-each select="//*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])][@from]">
10250
10488
  <xsl:copy>
10251
10489
  <xsl:copy-of select="@from"/>
10252
10490
  <xsl:copy-of select="@id"/>
10253
10491
  </xsl:copy>
10254
10492
  </xsl:for-each>
10493
+ <xsl:for-each select="//*[local-name() = 'fmt-review-start'][@source]">
10494
+ <xsl:copy>
10495
+ <xsl:copy-of select="@source"/>
10496
+ <xsl:copy-of select="@id"/>
10497
+ </xsl:copy>
10498
+ </xsl:for-each>
10255
10499
  </xsl:variable>
10256
10500
  <xsl:variable name="reviews" select="xalan:nodeset($reviews_)"/>
10257
10501
 
10258
10502
  <xsl:template name="addReviewHelper">
10259
- <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10260
- <xsl:variable name="curr_id" select="@id"/>
10261
- <xsl:variable name="review_id" select="normalize-space($reviews//*[local-name() = 'review'][@from = $curr_id]/@id)"/>
10262
- <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10263
- <fo:block keep-with-next="always" line-height="0.1" id="{$review_id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$review_id}" fox:alt-text="Annot___{$review_id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10503
+ <xsl:if test="$isGenerateTableIF = 'false'">
10504
+ <!-- if there is review with from="...", then add small helper block for Annot tag adding, see 'review' template -->
10505
+ <xsl:variable name="curr_id" select="@id"/>
10506
+ <!-- <xsl:variable name="review_id" select="normalize-space(/@id)"/> -->
10507
+ <xsl:for-each select="$reviews//*[local-name() = 'review'][@from = $curr_id]"> <!-- $reviews//*[local-name() = 'fmt-review-start'][@source = $curr_id] -->
10508
+ <xsl:variable name="review_id" select="normalize-space(@id)"/>
10509
+ <xsl:if test="$review_id != ''"> <!-- i.e. if review found -->
10510
+ <fo:block keep-with-next="always" line-height="0.1" id="{$review_id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$review_id}" fox:alt-text="Annot___{$review_id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10511
+ </xsl:if>
10512
+ </xsl:for-each>
10264
10513
  </xsl:if>
10265
10514
  <!-- <fo:block>
10266
10515
  <curr_id><xsl:value-of select="$curr_id"/></curr_id>
@@ -10402,14 +10651,61 @@
10402
10651
 
10403
10652
  </xsl:template>
10404
10653
 
10405
- <xsl:template match="*[local-name() = 'review']"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10654
+ <!-- document text (not figures, or tables) footnotes -->
10655
+ <xsl:variable name="reviews_container_">
10656
+ <xsl:for-each select="//*[local-name() = 'review-container']/*[local-name() = 'fmt-review-body']">
10657
+ <xsl:variable name="update_xml_step1">
10658
+ <xsl:apply-templates select="." mode="update_xml_step1"/>
10659
+ </xsl:variable>
10660
+ <xsl:apply-templates select="xalan:nodeset($update_xml_step1)" mode="update_xml_enclose_keep-together_within-line"/>
10661
+ </xsl:for-each>
10662
+ </xsl:variable>
10663
+ <xsl:variable name="reviews_container" select="xalan:nodeset($reviews_container_)"/>
10664
+
10665
+ <xsl:template match="*[local-name() = 'review-container']"/>
10666
+
10667
+ <!-- for old Presentation XML (before https://github.com/metanorma/isodoc/issues/670) -->
10668
+ <xsl:template match="*[local-name() = 'review'][not(parent::*[local-name() = 'review-container'])]"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10669
+ <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10670
+ <xsl:if test="$isGenerateTableIF = 'false'">
10671
+ <xsl:choose>
10672
+ <!-- if there isn't the attribute '@from', then -->
10673
+ <xsl:when test="$id_from = ''">
10674
+ <fo:block id="{@id}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@id}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10675
+ </xsl:when>
10676
+ <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10677
+ <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10678
+ <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10679
+ </xsl:when>
10680
+ <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10681
+ <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10682
+ </xsl:when>
10683
+ </xsl:choose>
10684
+ </xsl:if>
10685
+ </xsl:template>
10686
+
10687
+ <!-- for new Presentation XML (https://github.com/metanorma/isodoc/issues/670) -->
10688
+ <xsl:template match="*[local-name() = 'fmt-review-start']" name="fmt-review-start"> <!-- 'review' will be processed in mn2pdf/review.xsl -->
10406
10689
  <!-- comment 2019-11-29 -->
10407
10690
  <!-- <fo:block font-weight="bold">Review:</fo:block>
10408
10691
  <xsl:apply-templates /> -->
10409
10692
 
10410
- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/>
10693
+ <xsl:variable name="id_from" select="normalize-space(current()/@source)"/>
10411
10694
 
10412
- <xsl:if test="1 = 1">
10695
+ <xsl:variable name="source" select="normalize-space(@source)"/>
10696
+
10697
+ <xsl:if test="$isGenerateTableIF = 'false'">
10698
+ <!-- <xsl:variable name="id_from" select="normalize-space(current()/@from)"/> -->
10699
+
10700
+ <!-- <xsl:if test="@source = @end"> -->
10701
+ <!-- following-sibling::node()[1][local-name() = 'bookmark'][@id = $source] and
10702
+ following-sibling::node()[2][local-name() = 'fmt-review-end'][@source = $source] -->
10703
+ <!-- <fo:block id="{$source}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$source}" fox:alt-text="Annot___{$source}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block> -->
10704
+ <fo:block id="{@id}" font-size="1pt" role="SKIP" keep-with-next="always" line-height="0.1"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@id}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10705
+ <!-- </xsl:if> -->
10706
+ </xsl:if>
10707
+
10708
+ <xsl:if test="1 = 2">
10413
10709
  <xsl:choose>
10414
10710
  <!-- if there isn't the attribute '@from', then -->
10415
10711
  <xsl:when test="$id_from = ''">
@@ -10417,10 +10713,10 @@
10417
10713
  </xsl:when>
10418
10714
  <!-- if there isn't element with id 'from', then create 'bookmark' here -->
10419
10715
  <xsl:when test="ancestor::*[local-name() = 'metanorma'] and not(ancestor::*[local-name() = 'metanorma']//*[@id = $id_from])">
10420
- <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10716
+ <fo:block id="{$id_from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$id_from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10421
10717
  </xsl:when>
10422
10718
  <xsl:when test="not(/*[@id = $id_from]) and not(/*//*[@id = $id_from]) and not(preceding-sibling::*[@id = $id_from])">
10423
- <fo:block id="{@from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{@from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10719
+ <fo:block id="{$id_from}" font-size="1pt" role="SKIP"><xsl:value-of select="$hair_space"/><fo:basic-link internal-destination="{$id_from}" fox:alt-text="Annot___{@id}" role="Annot"><xsl:value-of select="$hair_space"/></fo:basic-link></fo:block>
10424
10720
  </xsl:when>
10425
10721
  </xsl:choose>
10426
10722
  </xsl:if>
@@ -10471,16 +10767,21 @@
10471
10767
  <xsl:variable name="list_level">
10472
10768
  <xsl:choose>
10473
10769
  <xsl:when test="$list_level_ &lt;= 3"><xsl:value-of select="$list_level_"/></xsl:when>
10474
- <xsl:otherwise><xsl:value-of select="$list_level_ mod 3"/></xsl:otherwise>
10770
+ <xsl:when test="$ul_labels/label[@level = 3]"><xsl:value-of select="$list_level_ mod 3"/></xsl:when>
10771
+ <xsl:when test="$list_level_ mod 2 = 0">2</xsl:when>
10772
+ <xsl:otherwise><xsl:value-of select="$list_level_ mod 2"/></xsl:otherwise>
10475
10773
  </xsl:choose>
10476
10774
  </xsl:variable>
10477
10775
  <xsl:choose>
10478
10776
  <xsl:when test="$ul_labels/label[not(@level)]"> <!-- one label for all levels -->
10479
10777
  <xsl:apply-templates select="$ul_labels/label[not(@level)]" mode="ul_labels"/>
10480
10778
  </xsl:when>
10481
- <xsl:when test="$list_level mod 3 = 0">
10779
+ <xsl:when test="$list_level mod 3 = 0 and $ul_labels/label[@level = 3]">
10482
10780
  <xsl:apply-templates select="$ul_labels/label[@level = 3]" mode="ul_labels"/>
10483
10781
  </xsl:when>
10782
+ <xsl:when test="$list_level mod 3 = 0">
10783
+ <xsl:apply-templates select="$ul_labels/label[@level = 1]" mode="ul_labels"/>
10784
+ </xsl:when>
10484
10785
  <xsl:when test="$list_level mod 2 = 0">
10485
10786
  <xsl:apply-templates select="$ul_labels/label[@level = 2]" mode="ul_labels"/>
10486
10787
  </xsl:when>
@@ -11023,10 +11324,22 @@
11023
11324
  <xsl:template match="*[local-name() = 'table']/*[local-name() = 'bookmark']" priority="2"/>
11024
11325
 
11025
11326
  <xsl:template match="*[local-name() = 'bookmark']" name="bookmark">
11026
- <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11027
- <fo:inline id="{@id}" font-size="1pt"><xsl:value-of select="$hair_space"/></fo:inline>
11028
- <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11029
- <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11327
+ <xsl:variable name="bookmark_id" select="@id"/>
11328
+ <xsl:choose>
11329
+ <!-- Example:
11330
+ <fmt-review-start id="_7ef81cf7-3f6c-4ed4-9c1f-1ba092052bbd" source="_dda23915-8574-ef1e-29a1-822d465a5b97" target="_ecfb2210-3b1b-46a2-b63a-8b8505be6686" end="_dda23915-8574-ef1e-29a1-822d465a5b97" author="" date="2025-03-24T00:00:00Z"/>
11331
+ <bookmark id="_dda23915-8574-ef1e-29a1-822d465a5b97"/>
11332
+ <fmt-review-end id="_f336a8d0-08a8-4b7f-a1aa-b04688ed40c1" source="_dda23915-8574-ef1e-29a1-822d465a5b97" target="_ecfb2210-3b1b-46a2-b63a-8b8505be6686" start="_dda23915-8574-ef1e-29a1-822d465a5b97" author="" date="2025-03-24T00:00:00Z"/> -->
11333
+ <xsl:when test="1 = 2 and preceding-sibling::node()[local-name() = 'fmt-review-start'][@source = $bookmark_id] and following-sibling::node()[local-name() = 'fmt-review-end'][@source = $bookmark_id]">
11334
+ <!-- skip here, see the template 'fmt-review-start' -->
11335
+ </xsl:when>
11336
+ <xsl:otherwise>
11337
+ <!-- <fo:inline id="{@id}" font-size="1pt"/> -->
11338
+ <fo:inline id="{@id}" font-size="1pt"><xsl:if test="preceding-sibling::node()[local-name() = 'fmt-review-start'][@source = $bookmark_id] and following-sibling::node()[local-name() = 'fmt-review-end'][@source = $bookmark_id]"><xsl:attribute name="line-height">0.1</xsl:attribute></xsl:if><xsl:value-of select="$hair_space"/></fo:inline>
11339
+ <!-- we need to add zero-width space, otherwise this fo:inline is missing in IF xml -->
11340
+ <xsl:if test="not(following-sibling::node()[normalize-space() != ''])"><fo:inline font-size="1pt"> </fo:inline></xsl:if>
11341
+ </xsl:otherwise>
11342
+ </xsl:choose>
11030
11343
  </xsl:template>
11031
11344
  <!-- =================== -->
11032
11345
  <!-- End of Index processing -->
@@ -11390,8 +11703,33 @@
11390
11703
 
11391
11704
  <xsl:template match="*[local-name() = 'toc']//*[local-name() = 'xref']" priority="3">
11392
11705
  <!-- <xref target="cgpm9th1948r6">1.6.3<tab/>&#8220;9th CGPM, 1948:<tab/>decision to establish the SI&#8221;</xref> -->
11706
+ <!-- New format: one tab <xref target="cgpm9th1948r6">&#8220;9th CGPM, 1948:<tab/>decision to establish the SI&#8221;</xref> -->
11707
+ <!-- <test><xsl:copy-of select="."/></test> -->
11708
+
11393
11709
  <xsl:variable name="target" select="@target"/>
11710
+
11394
11711
  <xsl:for-each select="*[local-name() = 'tab']">
11712
+
11713
+ <xsl:if test="position() = 1">
11714
+ <!-- first column (data before first `tab`) -->
11715
+ <fo:table-cell>
11716
+ <fo:block line-height-shift-adjustment="disregard-shifts" role="SKIP">
11717
+ <xsl:call-template name="insert_basic_link">
11718
+ <xsl:with-param name="element">
11719
+ <fo:basic-link internal-destination="{$target}" fox:alt-text="{.}">
11720
+ <xsl:for-each select="preceding-sibling::node()">
11721
+ <xsl:choose>
11722
+ <xsl:when test="self::text()"><xsl:value-of select="."/></xsl:when>
11723
+ <xsl:otherwise><xsl:apply-templates select="."/></xsl:otherwise>
11724
+ </xsl:choose>
11725
+ </xsl:for-each>
11726
+ </fo:basic-link>
11727
+ </xsl:with-param>
11728
+ </xsl:call-template>
11729
+ </fo:block>
11730
+ </fo:table-cell>
11731
+ </xsl:if>
11732
+
11395
11733
  <xsl:variable name="current_id" select="generate-id()"/>
11396
11734
  <fo:table-cell>
11397
11735
  <fo:block line-height-shift-adjustment="disregard-shifts" role="SKIP">
@@ -11442,11 +11780,25 @@
11442
11780
 
11443
11781
  <xsl:template match="*[local-name() = 'xref']" mode="toc_table_width">
11444
11782
  <!-- <xref target="cgpm9th1948r6">1.6.3<tab/>&#8220;9th CGPM, 1948:<tab/>decision to establish the SI&#8221;</xref> -->
11783
+ <!-- New format - one tab <xref target="cgpm9th1948r6">&#8220;9th CGPM, 1948:<tab/>decision to establish the SI&#8221;</xref> -->
11445
11784
  <xsl:for-each select="*[local-name() = 'tab']">
11785
+ <xsl:if test="position() = 1">
11786
+ <td>
11787
+ <xsl:for-each select="preceding-sibling::node()">
11788
+ <xsl:choose>
11789
+ <xsl:when test="self::text()"><xsl:value-of select="."/></xsl:when>
11790
+ <xsl:otherwise><xsl:copy-of select="."/></xsl:otherwise>
11791
+ </xsl:choose>
11792
+ </xsl:for-each>
11793
+ </td>
11794
+ </xsl:if>
11446
11795
  <xsl:variable name="current_id" select="generate-id()"/>
11447
11796
  <td>
11448
11797
  <xsl:for-each select="following-sibling::node()[not(self::*[local-name() = 'tab']) and preceding-sibling::*[local-name() = 'tab'][1][generate-id() = $current_id]]">
11449
- <xsl:copy-of select="."/>
11798
+ <xsl:choose>
11799
+ <xsl:when test="self::text()"><xsl:value-of select="."/></xsl:when>
11800
+ <xsl:otherwise><xsl:copy-of select="."/></xsl:otherwise>
11801
+ </xsl:choose>
11450
11802
  </xsl:for-each>
11451
11803
  </td>
11452
11804
  </xsl:for-each>
@@ -12313,6 +12665,9 @@
12313
12665
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_step1"/>
12314
12666
  <xsl:template match="*[local-name() = 'svgmap']" mode="update_xml_pres"/>
12315
12667
 
12668
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_step1"/>
12669
+ <xsl:template match="*[local-name() = 'review-container']" mode="update_xml_pres"/>
12670
+
12316
12671
  <!-- END: update new Presentation XML -->
12317
12672
 
12318
12673
  <!-- =========================================================================== -->
@@ -12836,6 +13191,7 @@
12836
13191
  <p id="_8e5cf917-f75a-4a49-b0aa-1714cb6cf954">Formerly denoted as 15 % (m/m).</p>
12837
13192
  </fn>
12838
13193
  -->
13194
+ <!-- fn in text -->
12839
13195
  <xsl:template match="*[local-name() = 'fn'][not(ancestor::*[(local-name() = 'table' or local-name() = 'figure')] and not(ancestor::*[local-name() = 'name']))]" mode="linear_xml" name="linear_xml_fn">
12840
13196
  <xsl:variable name="p_fn_">
12841
13197
  <xsl:call-template name="get_fn_list"/>