将字体与 Slidy / Pandoc 一起使用?

将字体与 Slidy / Pandoc 一起使用?

有没有办法使用 Pandoc 的 Slidy 进行 @font-face 调用?

在我的 slidy.css 样式表的开头,我有一个传统格式的 @font-face 调用:

@font-face
{
font-family:'ChunkFiveRegular';
src:url('fonts/Chunkfive-webfont.eot') format('embedded-opentype'),
url('fonts/Chunkfive-webfont.woff') format('woff'), 
url('fonts/Chunkfive-webfont.ttf') format('truetype'),
url('fonts/Chunkfive-webfont.svg#ChunkFiveRegular') format('svg');
font-weight:400;
font-style:normal;
}

但是当我使用 Pandoc 编译 Slidy 文件时,出现一条错误消息:

pandoc: Could not determine mime type for `slidy/styles/fonts/Chunkfive-webfont.eot'

这能做到吗?

相关内容