볼드체가 굵게 안나오거나 그다지 굵지 않다고 느껴질때

#폰트설정

[code:215uoaz3]
<match target="font" >
<test name="weight" compare="more">
<const>medium</const>
</test>
<test compare="contains" name="lang">
<string>ko</string>
</test>
<edit mode="assign" name="weight" binding="strong">
<const>bold</const>
</edit>
<edit mode="assign" name="autohint">
<bool>false</bool>
</edit>
<edit mode="assign" name="embolden" binding="same">
<bool>true</bool>
</edit>
</match>

<match target="font" >
<test target="pattern" name="weight" compare="more">
<const>medium</const>
</test>
<test name="weight" compare="less">
<const>bold</const>
</test>
<edit mode="assign" name="weight" binding="strong">
<const>bold</const>
</edit>
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
<edit mode="assign" name="autohint">
<bool>true</bool>
</edit>
<edit mode="assign" name="hintstyle">
<const>hintfull</const>
</edit>
<edit mode="assign" name="embolden" binding="same">
<bool>true</bool>
</edit>
</match>
[/code:215uoaz3]

#앞블록의 매치는 한글 볼드 스타일 글꼴을 처리합니다
대체로 한글글꼴의 볼드스타일은 그다지 두껍지가 않더군요 그래서 embolen으로 두껍게 해줍니다

#뒷블록의 매치는 볼드체를 요구하였으나, 글꼴자체가 볼드 스타일이 없을경우
오토힌트를 켜고, 힌트를 많이 주고, emblden으로 두껍게 해줍니다.