发布时间: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/
常见数学公式问题集下载

看图说话:

SNAGHTML1888618

选自:http://tex.stackexchange.com/questions/13187/is-there-some-way-to-embed-latex-source-code-in-a-pdf-file

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}
效果如上图。

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部