現在、私の tikzmark 注釈は、fancyhdr パッケージによって定義されたフッターと重複しています。
現在、私は次のように定義された注釈付きの方程式を持っています
\begin{equation}
\tikzmarknode{A}{2}
\end{equation}
\begin{tikzpicture}[overlay,remember picture, shorten <= 1mm, font=\footnotesize]
\draw[red,<-] (A.south) -- ++ (-0.3,-1) node[below] {2 spin states};
\end{tikzpicture}
LaTeX がボックス全体を次のページに配置することを認識できるように、方程式と tikzmark 注釈を同じボックスに配置する必要があると思います。これを行う適切な方法は何ですか?
編集: 私の方程式は次のようになります
\begin{equation}
\tikzmarknode{A}{2}\left[\frac{\tikzmarknode{B}{(2k_{F})}}{\tikzmarknode{C}{\left(\frac{2\pi}{Na}\right)}}\right]=\tikzmarknode{D}{n}\tikzmarknode{E}{(Na)}
\end{equation}
\begin{tikzpicture}[overlay,remember picture,shorten <=1mm,font=\footnotesize]
\draw[red,<-] (A.south) -- ++ (-0.3,-0.3) node[left,xshift=0.1cm,yshift=-0.1cm] {2 spin states};
\draw[red,<-] (B.east) -- ++ (1,0.6) node[right] {volume of Fermi sea};
\draw[red,<-] (C.south) -- ++ (0.2,-0.4) node[below right,xshift=-0.1cm,yshift=0.2cm] {volume corresponding to a single $k$ since $k$ is quantized as $k=\frac{2\pi m}{Na}$, $m\in\mathbb{Z}$};
\draw[red,<-] (D.south) -- ++ (0.3,-0.3) node[right,xshift=-0.1cm,yshift=-0.1cm] {number density};
\draw[red,<-] (E.east) -- ++(0.8,0.2) node[right] {length of chain};
\end{tikzpicture}
答え1
注釈の寸法を測定し、対応するスペースを方程式に追加することができます。これは、期待するほど自動的ではありません。
\documentclass[fleqn]{article}
\usepackage{amssymb}
\usepackage{lipsum}
\usepackage{tikz}
\usetikzlibrary{tikzmark,calc}
\begin{document}
\lipsum[1]
\begin{equation}
\tikzmarknode{A}{2}\left[\frac{\tikzmarknode{B}{(2k_\mathrm{F})}}{\tikzmarknode{C}{\left(\frac{2\pi}{Na}\right)}}\right]=\tikzmarknode{D}{n}\tikzmarknode{E}{(Na)}
\begin{tikzpicture}[overlay,remember picture,shorten <=1mm,font=\footnotesize]
\begin{scope}[local bounding box=annotations]
\draw[red,<-] (A.south) -- ++ (-0.3,-0.3) node[left,xshift=0.1cm,yshift=-0.1cm] {2 spin states};
\draw[red,<-] (B.east) -- ++ (1,0.6) node[right] {volume of Fermi sea};
\draw[red,<-] (C.south) -- ++ (0.2,-0.4) node[below right,xshift=-0.1cm,yshift=0.2cm] {volume corresponding to a single $k$ since $k$ is quantized as $k=\frac{2\pi m}{Na}$, $m\in\mathbb{Z}$};
\draw[red,<-] (D.south) -- ++ (0.3,-0.3) node[right,xshift=-0.1cm,yshift=-0.1cm] {number density};
\draw[red,<-] (E.east) -- ++(0.8,0.2) node[right] {length of chain};
\end{scope}
\path let \p1=($(annotations.north)-(annotations.south)$),
\p2=($(annotations.center)-(A.center)$),\n1={\y1-\baselineskip} in
\pgfextra{\xdef\myht{\n1}\xdef\mylift{\y2}};
\end{tikzpicture}
\raisebox{\mylift}{$\begin{array}{@{}c@{}}\vspace{\myht}\end{array}$}
\typeout{\myht}
\end{equation}
\lipsum[2]
\end{document}
答え2
tikzmark
それ自体の意味と動機によって、ページ上の他の部分と重複する可能性があります。重複を避けるには、\vspace{8mm}
たとえば、手動で (およびその後に空白行を続ける) を追加できます。
\documentclass{article}
\usepackage{tikz,lipsum}
\usetikzlibrary{tikzmark}
\begin{document}
\lipsum[1]
\begin{equation}
\tikzmarknode{A}{2}=1+1
\end{equation}
\begin{tikzpicture}[overlay,remember picture, shorten <= 1mm, font=\footnotesize]
\draw[red,<-] (A.south) -- ++ (-0.3,-1) node[below] {2 spin states};
\end{tikzpicture}
\vspace*{8mm}
\lipsum[1]
\end{document}