圖形與 tikzpicture 的垂直對齊

圖形與 tikzpicture 的垂直對齊

我知道這是一個簡單的問題,但我無法使用論壇解決這個問題,所以這裡是:

我試圖垂直對齊位於同一頁上的 eps 圖形和 tikzpicture :由於某種原因,即使在使用centering它時仍然看起來有點移動。我也嘗試過這篇文章的建議如何垂直對齊兩個圖形但沒有成功。

在此輸入影像描述

我添加這個不可執行的程式碼只是為了說明,因為我認為與放置完整的 MWE 無關,因為我使用了一個很長的 tikz 腳本來產生該圖,所以我只顯示這部分:

\begin{document}

%%%%FIGURE VARIATION DE A%%%%%
\begin{figure}[h]
\centering
\includegraphics[width = .6\textwidth]{images/Chapitre4/variationa.eps}
\caption{Tracé des profils de hauteur $h(x,t)$ à différents instants pendant la coalescence. Nous notons que la pente $\alpha$ du front des gouttes varie au cours du temps : une pente constante n'est valable qu'à des temps très courts au moment de la coalescence.}
\label{variationa}
\end{figure}

%% TEXT%%
\lipsum[1]

%%%FIGURE HYPERBOLOIDE%%%%%
\begin{figure}[h]
\centering
\begin{tikzpicture}[scale=1.2,el/.style args={#1,#2}{draw,ellipse,minimum width=#1, minimum height=#2},outer sep=0pt,>=latex']
...
\end{tikzpicture}
\caption{Illustration d'une forme hyperboloïde de section transverse correspondant à une ellipse dont le demi-axe vertical est la hauteur mesurée au point de coalescence $h_0(t)$.}
\label{hyperboloide}
\end{figure}
\end{document}

當然,如果需要把程式碼的所有細節都寫出來,你可以在評論中糾正我。另外,請隨時將我引導到您可能知道的其他類似帖子,這些帖子可以幫助解決此問題(如果該問題已處理)。

預先感謝您的幫助和時間,

真摯地。

根據建議:預覽fbox給出:

在此輸入影像描述

答案1

如圖fbox所示,圖表處於居中狀態,只是標籤$\Epsilon(h_0,a)$包含在邊界框中,因此圖表中的圓柱形物件(可能是您的眼睛用作比較對齊的參考)出現偏移。

在這種情況下,我會採取的一個巧妙的方法是將$\Epsilon(h_0,a)$文字(大概位於節點中)包含在 an 內,rlap如下所示:

\node[anchor=west] at (X,Y) {\rlap{$\Epsilon(h_0,a)$}};

然後列印節點文字但不佔用空間,因此圖表將(從美學上)更加對齊。 Noteanchor=west表示節點文字被印到正確的上面的座標(X,Y)

相關內容