czcionka nie działa w IE 10

Nie mam absolutnie żadnych sukcesów, aby IE 10 wyświetlał niestandardowe czcionki. Czy ktoś ma na to rozwiązanie? Widzę kilka komunikatów w sieci, że inni mają problemy z czcionkami w IE 10, ale nie znaleziono żadnych rozwiązań ani potwierdzonych błędów.

Czy ktoś ma takie samo doświadczenie lub rozwiązanie?

Właśnie to mam teraz i działa dobrze w IE przed 10, Chrome i Safari:

@font-face {
    font-family: "LCD";
    src: url('http://www.somedomain.xxx/Public/Fonts/Quartz_Regular.ttf');
}

<!--[if IE]>
<style type="text/css">
@font-face {
    font-family: "LCD";
    src: url('http://www.somedomain.xxx/Public/Fonts/Quartz_Regular.eot');
}
</style>
<![endif]-->

Próbowałem zastąpić plikami czcionek w innych formatach woff, ott itp., Ale nie miałem szczęścia.

Odpowiedź, która wskazywała na font-squirrel, sprawiła, że ​​działała. Teraz działający znacznik (dla IE 10) to:

@font-face {
    font-family: "LCD";
    src: url('/Public/Fonts/quartz_regular-webfont.eot');
    src: url('/Public/Fonts/quartz_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/Public/Fonts/quartz_regular-webfont.woff') format('woff'),
         url('/Public/Fonts/quartz_regular-webfont.ttf') format('truetype'),
         url('/Public/Fonts/quartz_regular-webfont.svg#quartzregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

questionAnswers(7)

yourAnswerToTheQuestion