我的 MWE,
\documentclass[a4paper,11pt]{article}
\usepackage{empheq}
\usepackage[svgnames]{xcolor}
\definecolor{backcolor}{RGB}{255,255,170}
\newcommand*\mybox[1]{%
\colorbox{backcolor}{\hspace{1em}#1\hspace{1em}}}
\begin{document}
\begin{empheq}[box=\mybox]{align}
V=I \cdot R
\end{empheq}
\end{document}
并显示
但是,我希望公式位于中心(不改变位置),其文本位于几乎右侧。参见下图,
有解决办法吗?
和
答案1
单程:
\documentclass[a4paper,11pt]{article}
\usepackage{empheq}
\usepackage[svgnames]{xcolor}
\definecolor{backcolor}{RGB}{255,255,170}
\newcommand*\mybox[1]{%
\colorbox{backcolor}{\hspace{1em}#1\hspace{1em}}}
\begin{document}
\begin{empheq}[box=\mybox]{align}
V &=I \cdot R \rlap{\qquad\text{Some text}}\\
P &= V \cdot I \rlap{\qquad\text{Some text here again}}
\end{empheq}
\end{document}