我尝试在图片标题中添加傅立叶函数但失败了,有什么帮助吗?
\begin{figure}[h]
\centering
\subfloat{\includegraphics[width=\linewidth]{Data/DFT.png}}\label{pic9}
\caption{DFT of a signal \mathcal "here" }
\end{figure}
答案1
你不需要。只需在in命令\subfloat
中输入该方程即可。$$
\caption
代码:
\documentclass[varwidth]{standalone}
\usepackage[draft]{graphicx}
\begin{document}
\begin{figure}[h]
\centering
\includegraphics[width=\linewidth]{Data/DFT.png}\label{pic9}
\caption{DFT of a signal $\mathcal{F}^{-1}\{\log|\mathcal{F}\{x[n]\}|\}$}
\end{figure}
\end{document}
结果:
答案2
您的问题与标题关系不大,更多地与排版数学表达式有关。
请注意,在这种特殊情况下,您不需要子浮点数,因为您的图形仅由一个元素组成。
\documentclass{article}
\usepackage{amsmath}
\usepackage[demo]{graphicx}
\newcommand\F{\mathcal{F}}
\newcommand\abs[1]{\lvert #1 \rvert}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=\linewidth]{Data/DFT.png}
\caption{DFT of a signal $\F^{-1} \{ \log
\abs{\F \{ x[n]\}} \}$ \label{pic9}}
\end{figure}
\end{document}