发布时间:2012-06-01 00:25:01
文章类别:小技巧
原文地址:http://blog.sina.com.cn/s/blog_5e16f1770102eplr.html
QQ群:91940767/145316219/141877998/80300084/194770436
淘宝店:http://latexstudio.taobao.com
技巧续篇:http://latexstudio.net/
常见数学公式问题集下载
看图说话:
http://tex.stackexchange.com/questions/10319/embedding-files-into-a-pdf-document-with-dvipdfmx
实现方式:
可以使用 embedfile 和 navigator包来实现其功能,两个包的代码基本相同。
\documentclass{article}
\usepackage{embedfile}
\embedfile{\jobname.tex}
\begin{document}
The document with source code.
\end{document}
或
\documentclass{article}
\usepackage{navigator}
\embeddedfile{sourcecode}{./\jobname.tex}
\begin{document}
The document with source code.
\end{document}
效果如上图。
发表评论 取消回复