I want two minipages side by side, aligned to the margins and the tops aligned to each other.
I have read this previous answer but I think my problem is different and related to bidi.
In the MWE below, the output of English text on the left hand side is slightly indented away from the left margin. And the tops of the two mini pages are not aligned, despite my specifying [t] in both minipage commands.
My first question: how to fix this?
My second question relates to the nesting sequence.
Curiously, if I reverse the nesting sequence:
\begin{english}
\begin{minipage}{...
to
\begin{minipage}
\begin{english}
the indenting problem is reduced slightly, but still present. Can someone explain why there should be any difference in indenting between the two?
And why is there any indent at all? I thought minipage didn't use indent for first paragraph.
Here is the MWE
\documentclass[11pt,oneside]{report}
\usepackage{polyglossia}
\setmainlanguage[numerals=mashriq]{arabic}
\setotherlanguage{english}
\newfontfamily\arabicfont[Script=Arabic, Scale=1.50]{Times New Roman}
\newfontfamily\englishfont[Script=Latin]{Linux Libertine O}
\begin{document}
\chapter{كلمة \hfill\textenglish{text}}
\begin{footnotesize}
\linespread{1.4}\selectfont
\begin{minipage}[t]{0.47\linewidth}
كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة
كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة كلمة
\end{minipage}
\hfill
\begin{english}
\begin{minipage}[t]{0.47\linewidth}
text text text text text text text text text text text text text text text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text
\end{minipage}
\end{english}
\end{footnotesize}
\end{document}

\captionsarabicin gloss-arabic.ldf. – Ulrike Fischer Oct 22 '15 at 14:28