我正在尝试使用[{3}}中记录的reveal.js的pdf导出选项。
我有以下问题:
不知道我做错了什么或如何排除故障。我在这个repo readme上使用了Github的最新版本的reveal.js css等(sha:131c00689a4c7a18e5c991fc8102347e4594b5d4)。
我在Ubuntu 14.04上使用Google-chrome版本34.0.1847.132
答案 0 :(得分:30)
删除
<link rel="stylesheet" media="print" href="reveal.js/css/print/pdf.css" />
添加
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'reveal.js/css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
将?print-pdf
添加到网址末尾,例如将.../index.html#
更改为.../index.html?print-pdf#
答案 1 :(得分:8)
我使用幻灯片进行了演示并将其导出为HTML,但对我而言,William Zhanf解决方案根本不起作用。我把所有的幻灯片叠加了。这就是我解决的问题:
pdf.css
,并将其与html文件放在同一文件夹中。</body>
标记之前粘贴William Zhanf代码段(更改了css文件的路径):<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'pdf.css'; // Notice: I changed the path
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
?print-pdf
添加到网址末尾,然后从Chrome打印为PDF格式。