排版傅立葉變換表達式(在圖標題中)

排版傅立葉變換表達式(在圖標題中)

我嘗試在圖標題中加入傅立葉函數,但失敗了,有什麼幫助嗎? 在此輸入影像描述

\begin{figure}[h]
\centering
\subfloat{\includegraphics[width=\linewidth]{Data/DFT.png}}\label{pic9}
\caption{DFT of a signal \mathcal "here" }
\end{figure}

答案1

你不需要\subfloat。只需在$$in指令中排版此方程式即可\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}

相關內容