그림 캡션에 푸리에 함수를 추가하려고 했지만 실패했습니다. 도움이 필요하십니까?
\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}