我不确定我的问题是没有声音添加到 pdf 文件还是我的阅读器不工作。我试过 pdfpc 和默认的 pdf 阅读器,都没有声音(即使有网络上的例子应该有声音。我的源代码如下。生成的 pdf 文件比所有声音文件都大。
\documentclass[pdflatex]{beamer}
\usepackage{multimedia}
\begin{document}
\begin{frame}{Start}
\begin{enumerate}
\item install audacity
\item record sound bytes as aiff, wav and mp3
\item process this file
\item pdfpc audiomulti.pdf
\item currently no sound from any frame
\end{enumerate}
\end{frame}
\begin{frame}{Sound example --- mp3}
\sound[autostart,inlinesound]{}{io.mp3}
\end{frame}
\begin{frame}{Sound example --- aiff}
\sound[autostart,inlinesound]{}{io.aiff}
\end{frame}
\begin{frame}{Sound example --- wav}
\sound[autostart,inlinesound]{}{io.wav}
\end{frame}
\end{document}