증상
`samples/exam_science.hwp` 페이지 우상단 쪽번호 (1, 2, 3, 4) 가 본문보다 진하게 (검정 + bold) 출력. 한컴 원본은 보통 회색 + non-bold (바탕쪽 CharShape).
SVG 실측
`output/svg/exam_science_after/exam_science_001.svg` 의 쪽번호 "1":
```xml
<text transform="translate(924.36,114.87) scale(0.9000,1)"
font-family="HY견명조,..."
font-size="44"
font-weight="bold"
fill="#000000">1
```
- `fill="#000000"` (검정)
- `font-weight="bold"`
기대: `fill="#7F7F7F"` 또는 light gray, non-bold.
본질 추정
쪽번호는 바탕쪽 (master page) 의 별도 CharShape (회색 + 일반 굵기) 로 표시되어야 함. 현재 본문 default CharShape (검정 + bold) 가 적용됨.
가능성:
- 바탕쪽 paragraph CharShape 자체가 본문과 동일 (HWP 저장 결함 — 가능성 낮음)
- rhwp 가 바탕쪽 렌더 시 별도 CharShape 적용 누락 (renderer 결함)
- 쪽번호 marker (`PageNum` field) 가 바탕쪽 paragraph 의 CharShape 대신 본문 default CharShape 적용
진단 권고
`rhwp dump` 로 바탕쪽 paragraph 의 CharShape ID 확인 + 해당 CharShape 의 color/bold 값 점검 후 renderer 의 적용 경로 추적.
우선순위
시각 미세 결함, 비기능. M100 milestone 후순위.
참고
증상
`samples/exam_science.hwp` 페이지 우상단 쪽번호 (1, 2, 3, 4) 가 본문보다 진하게 (검정 + bold) 출력. 한컴 원본은 보통 회색 + non-bold (바탕쪽 CharShape).
SVG 실측
`output/svg/exam_science_after/exam_science_001.svg` 의 쪽번호 "1":
```xml
<text transform="translate(924.36,114.87) scale(0.9000,1)"
font-family="HY견명조,..."
font-size="44"
font-weight="bold"
fill="#000000">1
```
기대: `fill="#7F7F7F"` 또는 light gray, non-bold.
본질 추정
쪽번호는 바탕쪽 (master page) 의 별도 CharShape (회색 + 일반 굵기) 로 표시되어야 함. 현재 본문 default CharShape (검정 + bold) 가 적용됨.
가능성:
진단 권고
`rhwp dump` 로 바탕쪽 paragraph 의 CharShape ID 확인 + 해당 CharShape 의 color/bold 값 점검 후 renderer 의 적용 경로 추적.
우선순위
시각 미세 결함, 비기능. M100 milestone 후순위.
참고