在多页环境中并排放置方程式时的对齐

在多页环境中并排放置方程式时的对齐

我有一个关于一行中多个方程的对齐问题。之前的主题描述了几种可以使用的方法。(并列的方程式,每个方程式都有编号

在我的报告中,我使用了多页方法,但我无法使方程编号垂直对齐。我也尝试过 tabularx 方法,但在这种情况下,方程本身的垂直对齐完全混乱。

下面是一个 MWE。我发现使用我在文章底部提供的一组 usepackages,多页的垂直对齐效果很好。

对于方程式,我希望垂直中心对齐。对于方程式编号,它们应该在整个文档的同一垂直线上,位于我的文本宽度或线宽的末尾。

有人知道如何正确对齐所有方程式吗?谢谢您的帮助。

\begin{document}

\noindent This is a very nice first equation
\begin{equation}
    1+2=3
\end{equation}
This is a very nice line of text\\
    \mbox{}\\
    \noindent\begin{minipage}{.5\linewidth}
        \begin{equation}
        w_{ChCl} = w_{ChCl,m} \pm \Delta w_{ChCl}
        \end{equation}
    \end{minipage}%
    \begin{minipage}{.5\linewidth}
        \begin{equation}
        w_{LA} = w_{LA,m} \pm \Delta w_{LA}
        \end{equation}
    \end{minipage}
    \mbox{}\\
This is a very nice line of text\\
    \mbox{}\\
    \noindent\begin{minipage}{.5\linewidth}
        \begin{equation}
        M_{ChCl} = \frac{1}{MM_{ChCl}}*w_{ChCl}
        \end{equation}
    \end{minipage}
    \begin{minipage}{.5\linewidth}
        \begin{equation}
        \Delta M_{ChCl} = \frac{1}{MM_{ChCl}}
        \end{equation}
    \end{minipage}
    \mbox{}\\

\end{document}    

main 中的 usepackages:(用于各种事情)

\documentclass[a4paper,english,10pt]{article}

%Packages
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\usepackage{scrextend} 
\usepackage[colorlinks=true,linkcolor=black,anchorcolor=black,citecolor=black,filecolor=black,menucolor=black,runcolor=black,urlcolor=black]{hyperref}
\usepackage{tabularx}
\usepackage{array}
\newcolumntype{H}{>{\setbox0=\hbox\bgroup}c<{\egroup}@{}}
\usepackage{multirow}
\usepackage{amsmath,tabu}
\usepackage{longtable}
\usepackage{babel}
\usepackage{chemformula}
\usepackage[top=1in,bottom=1in,left=0.75in,right=0.75in,headheight=13.6pt]{geometry}
\usepackage[refpage]{nomencl}
\usepackage{float}
\usepackage{url}
\usepackage[ampersand]{easylist}
\usepackage{listings}
\usepackage{pdfpages}
\usepackage{microtype}
\usepackage[resetlabels,labeled]{multibib}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage[justification=centering]{caption}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage{subcaption}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage[acronym,automake,nogroupskip]{glossaries}
\newglossary*{symbols}{List of Symbols}
\newglossary*{compounds}{List of Compounds}
\usepackage{cite}
\usepackage{tikz}
\usepackage[toc,page]{appendix}
\usepackage{adjustbox}
\usepackage{tabto}
\usepackage{wrapfig}
\usepackage{etoolbox}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{multicol}
\usepackage[official]{eurosym}
\usepackage{amsmath}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{pdflscape}   
\usepackage{afterpage}
\usepackage{pdfpages} 
\usepackage{amssymb}
\usepackage{tabularx}
\usepackage{eurosym}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows, positioning}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\graphicspath{ {Figures/} } 
\usepackage{nicefrac} 
\usepackage{matlab-prettifier}
\usepackage[nottoc]{tocbibind}
\setlength{\parindent}{0pt}
\usepackage{lastpage}

相关内容