In the below code, how can I set up the space in the end of the minipage environment with baselineskip automatically?
Actually I don't want use to \vspace... and the same command, and also I want to be all of my minipages with [t] option.
My code:
\documentclass{book}
\usepackage{amsmath}
\renewcommand{\baselinestretch}{2}
\setlength{\parindent}{0pt}
\begin{document}
\begin{minipage}[t]{.46\linewidth}
If you face a problem try to find the solution not the reason.
\end{minipage}\hfill
\begin{minipage}[t]{.46\linewidth}
If you face a problem try to find the solution not the reason.
\end{minipage}
\begin{minipage}[t]{\linewidth}
If you face a problem try to find the solution not the reason.
\end{minipage}
\begin{minipage}[t]{\linewidth}
If you face a problem try to find the solution not the reason.
\end{minipage}
\end{document}
My output
Second edit:
I want the space between my lines to be the same (inside and outside the minipage)
I want to have the below output:


