aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xslt/number
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:24 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:24 +0100
commitee778d6eea54935fd05022e0ba8c49456003381a (patch)
tree151a4cef804d8823cc8fc753b8edc693b7078241 /files/ko/web/xslt/number
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.gz
translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.tar.bz2
translated-content-ee778d6eea54935fd05022e0ba8c49456003381a.zip
unslug ko: move
Diffstat (limited to 'files/ko/web/xslt/number')
-rw-r--r--files/ko/web/xslt/number/index.html173
1 files changed, 0 insertions, 173 deletions
diff --git a/files/ko/web/xslt/number/index.html b/files/ko/web/xslt/number/index.html
deleted file mode 100644
index b822625a0e..0000000000
--- a/files/ko/web/xslt/number/index.html
+++ /dev/null
@@ -1,173 +0,0 @@
----
-title: number
-slug: Web/XSLT/number
-tags:
- - XSLT_Reference
-translation_of: Web/XSLT/Element/number
----
-<p>{{ XsltRef() }}</p>
-<p><code>&lt;xsl:number&gt;</code> 요소는 숫자를 연속으로 셉니다. 또한 숫자를 빠르게 구성하는(format) 데도 쓸 수 있습니다.</p>
-<h3 id=".EA.B5.AC.EB.AC.B8" name=".EA.B5.AC.EB.AC.B8">구문</h3>
-<pre>&lt;xsl:number
- count=EXPRESSION
- level="single" | "multiple" | "any"
- from=EXPRESSION
- value=EXPRESSION
- format=FORMAT-STRING
- lang=XML:LANG-CODE
- letter-value="alphabetic" | "traditional"
- grouping-separator=CHARACTER
- grouping-size=NUMBER /&gt;</pre>
-<h3 id=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1" name=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1">필수 속성</h3>
-<p>없음.</p>
-<h3 id=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1" name=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1">선택 속성</h3>
-<dl>
- <dt>
- <code>count</code></dt>
- <dd>
- 소스 트리에서 연속으로 셀 대상을 지정합니다. XPath 식을 씁니다.</dd>
-</dl>
-<dl>
- <dt>
- <code>level</code></dt>
- <dd>
- 일련번호를 만드는데 소스 트리의 수준을 어떻게 고려해야 하는 지를 정의합니다. 유효한 값은 <code>single</code>, <code>multiple</code>, <code>any</code> 세 가지. 기본값은 <code>single</code>입니다.</dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- <code>single</code></dt>
- <dd>
- 목록의 항목대로 연속으로 형제 노드를 번호 매깁니다. 처리기는 <code>count</code> 속성과 일치하는 <a href="ko/Transforming_XML_with_XSLT/Mozilla_XSLT%2f%2fXPath_Reference/Axes/ancestor-or-self"><code>ancestor-or-self</code></a> 축의 첫 번째 노드로 갑니다. 그리고 나서 역시 <code>count</code> 속성과 일치하는 앞선 형제(preceding siblings) 노드(있다면, 한 짝인 <code>from</code> 속성에 이르러 멈춤)를 모두 더하여 셉니다. 일치하지 않으면, sequence는 빈 목록입니다.</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- <code>multiple</code></dt>
- <dd>
- 노드의 계층 위치를 반영하는 복합 sequence로 노드를 셉니다. 예를 들어, 1.2.2.5 (포개진 형식은 <code>format</code> 속성(예, A.1.1)으로 지정할 수 있습니다). 처리기는 만약 있다면 <code>from</code> 속성에 이르러 멈추며 현재 노드와 현재 노드의 모든 <a href="ko/Transforming_XML_with_XSLT/Mozilla_XSLT%2f%2fXPath_Reference/Axes/ancestor"><code>ancestors</code></a>를 조사합니다. 일치하지 않으면, sequence는 빈 목록입니다.</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- <code>any</code> (이번에 지원 안 함.)</dt>
- <dd>
- 수준을 무시하고 연속으로 일치하는 모든 노드를 셉니다. <a href="ko/Transforming_XML_with_XSLT/Mozilla_XSLT%2f%2fXPath_Reference/Axes/ancestor"><code>ancestor</code></a>, <a href="ko/Transforming_XML_with_XSLT/Mozilla_XSLT%2f%2fXPath_Reference/Axes/self"><code>self</code></a>, <a href="ko/Transforming_XML_with_XSLT/Mozilla_XSLT%2f%2fXPath_Reference/Axes/preceding"><code>preceding</code></a> 축을 모두 고려합니다. 처리기는 현재 노드에서 시작하여 <code>from</code> 속성과 일치할 때 멈추며 문서 역순으로 진행합니다. 발견한 <code>count</code> 속성과 일치하지 않으면, sequence는 빈 목록입니다. 이 수준은 이번에 지원하지 않습니다.</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dt>
- from</dt>
- <dd>
- 번호 매기기를 시작하거나 다시 시작하면 좋을 곳을 지정합니다. 순서는 <code>from</code> 특성과 일치하는 노드의 첫 번째 자손(descendant)에서 시작합니다.</dd>
-</dl>
-<dl>
- <dt>
- value</dt>
- <dd>
- 숫자에 주어진 형식을 적용합니다. 이것이 사용자 제공 숫자(노드 sequence 숫자와는 반대로)를 표준 <code>&lt;xsl:number&gt;</code> 형식으로 구성하는 빠른 방법입니다.</dd>
-</dl>
-<dl>
- <dt>
- format</dt>
- <dd>
- 만드는 숫자의 형식을 정의합니다.</dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="1"</dt>
- <dd>
- &lt;tt&gt;1 2 3 . . .&lt;/tt&gt; (이번에 지원하는 유일한 형식)</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="01"</dt>
- <dd>
- &lt;tt&gt;01 02 03 . . . 09 10 11 . . .&lt;/tt&gt;</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="a"</dt>
- <dd>
- &lt;tt&gt;a b c . . .y z aa ab . . .&lt;/tt&gt;</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="A"</dt>
- <dd>
- &lt;tt&gt;A B C . . . Y Z AA AB . . .&lt;/tt&gt;</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="i"</dt>
- <dd>
- &lt;tt&gt;i ii iii iv v . . .&lt;/tt&gt;</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dd>
- <dl>
- <dt>
- format="I"</dt>
- <dd>
- &lt;tt&gt;I II III IV V . . .&lt;/tt&gt;</dd>
- </dl>
- </dd>
-</dl>
-<dl>
- <dt>
- lang (이번에는 지원 안 함)</dt>
- <dd>
- 문자에 기반을 둔 번호 매기기 형식에 쓰면 좋을 언어의 알파벳을 지정합니다.</dd>
-</dl>
-<dl>
- <dt>
- letter-value</dt>
- <dd>
- 문자(letter)를 쓰는 번호 매김 열(sequence) 사이를 명확하게 합니다. 어떤 언어는 문자(letter)를 쓰는 하나 이상의 번호 매기기 시스템이 있습니다. 두 시스템이 같은 토큰으로 시작하면, 모호함이 생길 수 있습니다. 이 속성은 "<code>alphabetic</code>"나 "<code>traditional</code>" 값일 수 있습니다. 기본값은 "<code>alphabetic</code>"입니다.</dd>
-</dl>
-<dl>
- <dt>
- grouping-separator</dt>
- <dd>
- 어떤 문자를 그룹(예로 천 단위) 구분자로 쓰면 좋을지를 지정합니다. 기본값은 쉼표(<code>,</code>)입니다.</dd>
-</dl>
-<dl>
- <dt>
- grouping-size</dt>
- <dd>
- 숫자 그룹을 만드는 자릿수를 나타냅니다. 기본값은 "<code>3</code>"입니다.</dd>
-</dl>
-<h3 id=".ED.83.80.EC.9E.85" name=".ED.83.80.EC.9E.85">타입</h3>
-<p>명령, 템플릿 안에 나타남.</p>
-<h3 id=".EC.A0.95.EC.9D.98" name=".EC.A0.95.EC.9D.98">정의</h3>
-<p><a class="external" href="http://www.w3.org/TR/xslt#number">XSLT section 7.7, Numbering</a></p>
-<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3>
-<p>부분 지원. 위 해설을 보세요.</p>