你好 LaTeX 社區,
我目前正在使用 scrbook 類別處理文檔,並嘗試合併多個 .png 圖像的動畫。我有 20 個按順序命名的圖像,從frame0.png 到frame19.png,並希望在我的 LaTeX 文件中對這些圖像進行動畫處理。
我一直在嘗試透過以下程式碼使用 animate 套件:
\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}
\title{animationTest}
\author{Frisbee}
\date{December 2023}
\begin{document}
\section{Introduction}
\begin{center}
\animategraphics[autoplay,loop,width=\textwidth]{10}{frame}{0}{19}
\end{center}
\end{document}
我還嘗試使用 animateinline 處理 .pdf 文件,但到目前為止還沒有成功。
\documentclass{scrbook}
\usepackage{graphicx} % Required for inserting images
\usepackage{animate}
\title{animationTest}
\author{Frisbee}
\date{December 2023}
\begin{document}
\maketitle
\section{Introduction}
Here is the animation:
\begin{center}
\begin{animateinline}[autoplay,loop]{10}
\multiframe{20}{i=0+1}{
\includegraphics[width=\textwidth]{frame\i.pdf}
}
\end{animateinline}
\end{center}
\end{document}
在這兩種情況下,都會載入一張圖像,當我將滑鼠懸停在該圖像上時,它會呈現黃色亮起,就像它有某種互動一樣,但沒有顯示動畫。
我正在使用 backleaf 並使用 mac 預覽開啟 Latex pdf 檔案。
先致謝!