How to use the computer modern font in webpages?

后端 未结 6 964
慢半拍i
慢半拍i 2021-01-30 02:46

I never see Computer Modern font, the one shipped as default for LaTeX type setting system, on any webpage.

How to change the CSS so that font will actually wor

6条回答
  •  感情败类
    2021-01-30 02:56

    @font-face {
    font-family: "Computer Modern ";
    src: url(ace.ttf);
    }
    

    .cm { font-family: "Computer Modern"; }

    You do need to have a ttf file for that font.

提交回复
热议问题