I know this might be repeated in Understanding minipages - aligning at top. But I could just not make sense from those answers. The code in MWE I have is a bit different and simpler. This code was actually found in this other webpage, which I found to be very helpful despite giving me this confusing about minipage alignment.
MWE
\documentclass{article}
\begin{document}
\fbox{\begin{minipage}[t]{0.5\linewidth}
This is the first paragraph and its width is half of the line-width. This minipage environment is quite essential in positioning of texts.
\end{minipage}}
\fbox{\begin{minipage}[b]{0.5\linewidth}
This is the second paragraph and its width is half of the line-width. We must understand the usage of the different position values.
\end{minipage}}
\end{document
Expectation
To have the first paragraph on the top, and the second on the bottom.
Output
Exactly the opposite.



minipage. So,\begin{minipage}[t]will be anchored at thetop, while\begin{minipage}[b]will be anchored at thebottom. With this in mind, you need\begin{minipage}[b]...\begin{minipage}[t]... – Werner Oct 06 '23 at 21:14