这是我的问题,我没有在 \equation 和 \align 中写边注。这是一个错误。但它在文本中起作用。我的目标是,边注和公式必须对齐。
\definecolor{background}{RGB}{255,255,170}
\begin{equation}% \begin{align}
\colorbox{background}{$\displaystyle{} R_A+R_B=\frac{R_3(R_1+R_2)}{R_1+R_2+R_3}$}
\end{equation}% \end{align}
奇数页
偶数页
我确信这是另一个问题的重复,只是我找不到。所以,有人知道如何修复它吗?
答案1
您有更好的方法来给方程式着色。例如:这个问题及其答案empheq
。我在我的例子中使用了。使用tcolorbox
,你可以更加花哨。
现在真正的问题来了。以下代码在包的帮助下工作marginnote
。
\documentclass{book}
\usepackage{mathtools}
\usepackage{xcolor}
\definecolor{background}{RGB}{255,255,170}
\usepackage{empheq}
\newcommand*\mybox[1]{%
\colorbox{background}{\hspace{1em}#1\hspace{1em}}}
\usepackage{kantlipsum}
\usepackage[fulladjust]{marginnote}
\setlength{\marginparsep}{5mm}
\setlength{\marginparwidth}{1in}
\reversemarginpar
\begin{document}
\kant[1]
\begin{empheq}[box=\mybox]{align}
R_A+R_B &=\frac{R_3(R_1+R_2)}{R_1+R_2+R_3}\marginnote{Some margin note here}
\end{empheq}
\kant[2]
\clearpage
\kant[1]
\begin{empheq}[box=\mybox]{align}
R_A+R_B &=\frac{R_3(R_1+R_2)}{R_1+R_2+R_3}\marginnote{Some margin note here}
\end{empheq}
\kant[2]
\end{document}
由于您没有透露所使用的文档类,因此我使用了书籍类。如果您使用的是 memoir,则最好使用本机\marginpar
命令。