I am trying to figure out the syntax for generating a set of left-aligned, boxed equations with aligned equals signs for presenting some results. After trying many combinations of methods, this is the closest I've gotten:
\documentclass[12pt]{report}
\usepackage{enumitem}
\usepackage{empheq}
\setlength{\parindent}{0pt}
\setlength{\fboxsep}{6pt}
\begin{document}
\begin{itemize}
\item[1a.]
here's some text
$some=math$
\begin{empheq}[box=\fbox]{align*}
R_{b1} &= 12\Omega\\
R_{b2} &= 123\Omega\\
R_c &= 1234\Omega\\
R_{ee} &= 12345\Omega
\end{empheq}
\end{itemize}
\end{document}
This results in the following (colored lines and arrow added).

I would like to left align the box as shown so it fits with the rest of the text on the page. I found this answer, which suggests adding fleqn to \documentclass. However, this still leaves the box floating an odd distance away from the bottom and left edges of the preceding text.
How can I left align my box without this weird space?


R_{b1} &= \qty{12}{\ohm};-)` – Zarko Jan 12 '22 at 08:02siunitxpackage. But then I decided against it, because I judged that it would address a point that’s related only tangentially to the OP’s query. – Mico Jan 12 '22 at 08:53