제가 그리는 그림에 문제가 있습니다. 그림이 아래 그림과 같이 2단지 중 한 열에 맞지 않습니다. 도움이 필요하십니까?
\begin{figure}{H}
\centering
\begin{tikzpicture}[
simple/.style={draw,text width=1.5cm,align=center,minimum size=1.5em},
node distance=11mm
]
\node (xn) {$x[n]$};
\node[simple,right = of xn] (dft) {DFT};
\node[simple,right = of dft] (log) {log};
\node[simple,right = of log] (idf) {IDFT};
\node[,right = of idf] (cn) {$c[n]$};
\draw[dashed] ([xshift=-10pt,yshift=10pt]dft.north west) rectangle ([xshift=10pt,yshift=-10pt]idf.south east) ;
\draw[->] (xn) -- (dft);
\draw[->] (dft) -- node[auto] {$X[k]$} (log);
\draw[->] (log) -- node[auto] {$\hat{X}[k]$} (idf);
\draw[->] (idf) -- (cn);
\end{tikzpicture}
\caption{Cepstrum representation.}
\end{figure}
답변1
고객님께서 사진에 사용된 요청사항을 전달해주셔야 하기 때문에 정확한 답변이 어렵습니다.
원하는 것: 노드의 크기가 동일합니까? 화살과 같은 크기인가요? 점선 직사각형의 크기는 얼마입니까? $X[k]$ 를 어디에 배치하시겠습니까?
그림의 크기를 조정하려면 위치 지정을 피하려고 합니다. 없는 게 더 편한 것 같아요. 그렇다면 스케일이 더 중요하다면 (dft)와 (log) 사이에 $X[k]$를 넣는 것은 불가능합니다. 이 노드 위에 $X[k]$를 넣었습니다. 글꼴의 일반 크기를 유지하면 0.6 미만의 계수를 사용하여 그림 크기를 조정할 수 없습니다.
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}[scale=1,
simple/.style={minimum width=8ex, minimum height=2em,draw}
]
\path (0,0) node (xn) {$x[n]$}
++(16ex,0) node[simple] (dft) {DFT}
++(16ex,0) node[simple] (log) {log}
++(16ex,0) node[simple] (idf) {IDFT}
++(16ex,0) node (cn) {$c[n]$};
\draw[->] (xn) -- coordinate (m1) (dft);
\draw[->] (dft) -- node[above=.9em] {$X[k]$} (log);
\draw[->] (log) -- node[above=.9em] {$\hat{X}[k]$} (idf);
\draw[->] (idf) -- coordinate (m2) (cn);
\draw[dashed] ([yshift=-3em]m1) rectangle ([yshift=+3em]m2);
\end{tikzpicture}
\caption{Cepstrum representation.}
\end{figure}
\begin{figure}
\centering
\begin{tikzpicture}[scale=.6,
simple/.style={minimum width=8ex, minimum height=2em,draw}
]
\path (0,0) node (xn) {$x[n]$}
++(16ex,0) node[simple] (dft) {DFT}
++(16ex,0) node[simple] (log) {log}
++(16ex,0) node[simple] (idf) {IDFT}
++(16ex,0) node (cn) {$c[n]$};
\draw[->] (xn) -- coordinate (m1) (dft);
\draw[->] (dft) -- node[above=.9em] {$X[k]$} (log);
\draw[->] (log) -- node[above=.9em] {$\hat{X}[k]$} (idf);
\draw[->] (idf) -- coordinate (m2) (cn);
\draw[dashed] ([yshift=-5em]m1) rectangle ([yshift=+5em]m2);
\end{tikzpicture}
\caption{Cepstrum representation.}
\end{figure}
\end{document}