Problema de alinhamento ao usar reunir com multicol

Problema de alinhamento ao usar reunir com multicol

Eu tenho um problema de alinhamento semelhante ao encontrado nestepergunta. Mas usar quebra de coluna não resolveu meu problema como nesta questão.

Acho que poderia tentar alinhar, mas seria chato reescrever tudo neste novo formato. Existe uma maneira de adaptar este código para garantir que o alinhamento seja aceitável?

Aqui está um exemplo de código:

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{multicol}
\usepackage{amsmath}

\begin{document}

\begin{multicols}{2}
\subsubsection*{Omaha}
\begin{gather*}
F = FB \neq \textbf{MB = MBS} \\
M = \textbf{MZ = MBD }\neq FZ \\
B = MZS = FBS \neq FZS \\
Z = MZD = FBD \neq FZD 
\end{gather*}
\columnbreak
\subsubsection*{Crow}
\begin{gather*}
F = \textbf{FB = FZS} \neq MB \\
M = MZ \neq \textbf{FZ = FZD} \\
B = FBS = MZS \neq MBS \\
Z = FBD = MZD \neq MBD 
\end{gather*}
\end{multicols}

\end{document}

Responder1

Com o uso da tabularxmesa em vez do multicolambiente:

insira a descrição da imagem aqui

(as linhas vermelhas mostram as bordas do texto)

\documentclass{article}
%---------------- show page layout. don't use in a real document!
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.15pt}
\renewcommand*\ShowFrameColor{\color{red}}
%---------------------------------------------------------------%

\usepackage{tabularx}
\usepackage{amsmath}

\begin{document}

\noindent%
\begin{tabularx}{\linewidth}{@{} X @{} X @{}}
\subsubsection*{Omaha}
\begin{gather*}
F = FB \neq \mathbf{MB = MBS} \\
M = \mathbf{MZ = MBD }\neq FZ \\
B = MZS = FBS \neq FZS \\
Z = MZD = FBD \neq FZD
\end{gather*}
    &
\subsubsection*{Crow}
\begin{gather*}
F = \mathbf{FB = FZS} \neq MB \\
M = MZ \neq \mathbf{FZ = FZD} \\
B = FBS = MZS \neq MBS \\
Z = FBD = MZD \neq MBD
\end{gather*}
\end{tabularx}
or

\noindent%
\begin{tabularx}{\linewidth}{@{} X @{} X @{}}
\subsubsection*{Omaha}
\[\begin{aligned}
F & = FB \neq \mathbf{MB = MBS} \\
M & = \mathbf{MZ = MBD }\neq FZ \\
B & = MZS = FBS \neq FZS \\
Z & = MZD = FBD \neq FZD
\end{aligned}\]
    &
\subsubsection*{Crow}
\[\begin{aligned}
F & = \mathbf{FB = FZS} \neq MB \\
M & = MZ \neq \mathbf{FZ = FZD} \\
B & = FBS = MZS \neq MBS \\
Z & = FBD = MZD \neq MBD
\end{aligned}\]
\end{tabularx}

\end{document}

Responder2

Talvez você possa usar um ambiente tabular com algumas minipáginas como esta:

\begin{tabular}{p{.5\textwidth}p{.5\textwidth}}
    \begin{minipage}{1\textwidth}
        \subsubsection*{Omaha}
        $
        F = FB \neq \textbf{MB = MBS} \\
        M = \textbf{MZ = MBD }\neq FZ \\
        B = MZS = FBS \neq FZS \\
        Z = MZD = FBD \neq FZD 
        $
    \end{minipage}
    &
    \begin{minipage}{1\textwidth}
        \subsubsection*{Crow}
        $
        F = \textbf{FB = FZS} \neq MB \\
        M = MZ \neq \textbf{FZ = FZD} \\
        B = FBS = MZS \neq MBS \\
        Z = FBD = MZD \neq MBD 
        $
    \end{minipage}  
\end{tabular}

informação relacionada