서울 남산체와 한강체의 볼드 문제

명조체인 서울 한강체는 L, M 두개의 파일이고
고딕체인 서울 남산체는 L, M, B, EB, 세로쓰기 이렇게 5개의 파일로 존재하는데요.

모든 파일을 ~/.fonts 폴더에 집어 넣고 사용할려고 해보면 한강체와 남산체 모두 하나씩만 인식합니다.
그놈에서 L,M,B,EB 를 모두 선택할수는 있는데 글꼴의 변화는 없더군요.

다른거 다 없애고 하나씩만 넣어주면 각각의 글꼴이 모두 표현됩니다. 두개 이상 넣으면 하나만 표현되구요.

볼드를 주면 시스템 자체적으로 두껍게 처리하더군요.

L, M, B, EB 를 모두 사용하고 싶은데 방법이 없을까요?
나눔고딕 글꼴도 비슷한 문제가 있었던것 같은데 서울체는 어떻게 해결 가능한가요?

9.04 던가 9.10부터 시스템 글꼴이 전체적으로 두껍게 표현되어
개인 폰트 설정 파일을 건디려 본 적이 있는데 ~/.fonts.conf
참고 하여 보시기 바랍니다. ( 위 질문에 답글은 아닙니다. ) 댓글 없어서 적어 봅니다.

[code:3ng06bqe]<?xml version=‘1.0’?>
<!DOCTYPE fontconfig SYSTEM ‘fonts.dtd’>
<fontconfig>
<!-- See: man 5 fonts-conf –>
<!-- Antialias rules –>
<match target="font">

	&lt;!--Subpixel smoothing&#58; rgb, bgr, vrgb, vbgr, none--&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;rgba&quot;&gt;&lt;const&gt;none&lt;/const&gt;&lt;/edit&gt;
	
	&lt;!-- Use hint? true/false&#46; Usually true--&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;hinting&quot;&gt;&lt;bool&gt;true&lt;/bool&gt;&lt;/edit&gt;
	
	&lt;!-- Hint&#58; hintfull, hintmedium, hintslight, hintnone --&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;hintstyle&quot;&gt;&lt;const&gt;hintmedium&lt;/const&gt;&lt;/edit&gt;
	
	&lt;!-- By default, apply antialias to all, filter on the following lines --&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;antialias&quot;&gt;&lt;bool&gt;true&lt;/bool&gt;&lt;/edit&gt;
&lt;/match&gt;

&lt;!-- If fonts are smaller than X, then don't antialias--&gt;
&lt;match target=&quot;font&quot;&gt;
	&lt;test compare=&quot;less&quot; name=&quot;size&quot; qual=&quot;any&quot;&gt;
		&lt;int&gt;15&lt;/int&gt;
	&lt;/test&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;antialias&quot;&gt;
		&lt;bool&gt;false&lt;/bool&gt;
	&lt;/edit&gt;
&lt;/match&gt;

&lt;!-- If BOLD fonts are smaller than Y, then don't antialias--&gt;
&lt;match target=&quot;font&quot;&gt;
	&lt;test compare=&quot;more_eq&quot; name=&quot;weight&quot; qual=&quot;any&quot;&gt;
		&lt;const&gt;medium&lt;/const&gt;
	&lt;/test&gt;
	&lt;test compare=&quot;less&quot; name=&quot;size&quot; qual=&quot;any&quot;&gt;
		&lt;int&gt;13&lt;/int&gt;
	&lt;/test&gt;
	&lt;edit mode=&quot;assign&quot; name=&quot;antialias&quot;&gt;
		&lt;bool&gt;false&lt;/bool&gt;
	&lt;/edit&gt;
&lt;/match&gt;

&lt;!-- Firefox fix (it uses pixelsize, instead of size) --&gt;
&lt;match target=&quot;font&quot;&gt;
	&lt;test compare=&quot;less&quot; name=&quot;pixelsize&quot; qual=&quot;any&quot;&gt;
		&lt;int&gt;15&lt;/int&gt;
	&lt;/test&gt;
	&lt;edit name=&quot;antialias&quot; mode=&quot;assign&quot;&gt;
		&lt;bool&gt;false&lt;/bool&gt;
	&lt;/edit&gt;
&lt;/match&gt;

&lt;!-- Firefox fix BOLD (it uses pixelsize, instead of size) --&gt;
&lt;match target=&quot;font&quot;&gt;
	&lt;test compare=&quot;more_eq&quot; name=&quot;weight&quot; qual=&quot;any&quot;&gt;
		&lt;const&gt;medium&lt;/const&gt;
	&lt;/test&gt;
	&lt;test compare=&quot;less&quot; name=&quot;pixelsize&quot; qual=&quot;any&quot;&gt;
		&lt;int&gt;13&lt;/int&gt;
	&lt;/test&gt;
	&lt;edit name=&quot;antialias&quot; mode=&quot;assign&quot;&gt;
		&lt;bool&gt;false&lt;/bool&gt;
	&lt;/edit&gt;
&lt;/match&gt;

</fontconfig>[/code:3ng06bqe]