How to include @font-face within style tag of RMarkdown?
问题 Is it possible to use the CSS @font-face to provide font files to an RMarkdown? e.g.: <style> @font-face { font-family: "Custom"; src: url(https://github.com/stevecondylios/fonts/raw/master/CircularStd-Book.ttf) format("truetype"); } body { font-family: "Custom", Verdana, Tahoma; } </style> Note that the exact same css code above (less the style tags) does work when it's stored in an external .css file locally and referenced in the Rmd's yaml with --- title: "My Rmarkdown doc" date: "28 April