Numbering pattern "가" sequence needs change
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Idoneità per principianti
- 55/100
- Tipo di issue
- Funzionalità
- Chiarezza
- Abbastanza chiara
- Stato di attività
- Tranquilla
- Stack tecnologico
- rust
- Ambito
- internationalization
Direzione di ricerca
Inizia individuando l’implementazione della numerazione per il formato "가" e confronta la sequenza attuale con lo standard del governo coreano descritto nell’issue. Usa come riferimento la logica di combinazione Hangul fornita e l’output previsto, quindi verifica che la numerazione continui attraverso i gruppi di vocali elencati senza produrre "가가" per 29.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Description
Currently, the "가" numbering pattern has the following sequence
가나다라마바사아자차카타파하
and after that, it ends, and displaying the 29th numbering will result to "가가". But, in fact it should be "거". According to Korean government standards, the order should be the combination of plain consonants ㄱㄴㄷㄹㅁㅅㅇㅈㅊㅋㅌㅍㅎ and short vowels(monopthongs)ㅏㅓㅗㅜㅡㅣ. So it would be
가나다라마바사아자차카타파하 -> 거너더...허 -> 고노도...호 -> 구누두...후 -> ...
The current situation can be described as similar to a scenario where 'ああ いい ...' follows 'あ い う え お' in the Japanese "あ" numbering pattern. (This is just a metaphor? and currently typst works as it should where it displays "か" after "お")
Here is my implementation of the numbering system(plus a hard coded solution to typst/typst#6484[https://github.com/typst/typst/issues/6484])
#let traditional-numbering(format, ..args) = {
let result = numbering(format, ..args)
let n = args.pos().first()
if format == "가" {
// Hangul combination formula: 0xAC00 + (consonant index * 21 * 28) + (vowel index * 28)
// 1. plain consonants (ㄱ, ㄴ, ㄷ, ㄹ, ㅁ, ㅂ, ㅅ, ㅇ, ㅈ, ㅊ, ㅋ, ㅌ, ㅍ, ㅎ)
let c_map = (0, 2, 3, 5, 6, 7, 9, 11, 12, 14, 15, 16, 17, 18)
// 2. short vowels (ㅏ, ㅓ, ㅗ, ㅜ, ㅡ, ㅣ)
let v_map = (0, 4, 6, 12, 13, 18, 20)
let c_idx = calc.rem(n - 1, 14)
let v_idx = calc.floor((n - 1) / 14)
if v_idx < v_map.len() {
let char_code = 0xAC00 + (c_map.at(c_idx) * 21 * 28) + (v_map.at(v_idx) * 28)
result = str.from-unicode(char_code)
} else {
result = numbering(format, ..args)
}
} else {
result = numbering(format, ..args)
}
result
.replace("贰", "貳") // 2
.replace("叁", "參") // 3
.replace("陆", "陸") // 6
// .replace("万", "萬")
.replace("亿", "億") // 100 million
}
Below is the result of this code
#for i in range(1, 85) [
#traditional-numbering("가", i)
]
가 나 다 라 마 바 사 아 자 차 카 타 파 하 거 너 더 러 머 버 서 어 저 처 커 터 퍼 허 고 노 도 로 모 보 소 오 조 초 코 토 포 호 구 누 두 루 무 부 수 우 주 추 쿠 투 푸 후 그 느 드 르 므 브 스 으 즈 츠 크 트 프 흐 기 니 디 리 미 비 시 이 지 치 키 티 피 히
Thank you for looking in!
Use Case
This would make typst numbering match the Korean standards (from the government or the HWP word processor)
- Lingua principale
- Rust
- Stelle
- 53
- Fork
- 22
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di typst/codex
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 35/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 35/100
-
Rename `times` to `cross` Apertaproposal
Difficoltà 5/5 Più di una settimana Idoneità per principianti 25/100
-
Lack of ⊻ U+22BB Apertaproposal
Difficoltà 2/5 1-3 ore Idoneità per principianti 45/100
-
Difficoltà 3/5 1-2 giorni Idoneità per principianti 45/100
Issue simili
-
bug
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 85/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
yantrikos/yantrik-os#255 ·
-
Replayed reasoning items send "content": null, which the Responses API schema does not permit Apertabug CLI custom-model
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
raphamorim/rio#1956 ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
rust-bitcoin/rust-bitcoin#6930 · 1 commento ·