I am looking to typeset a classical Persian poem in a classicthesis-styled document which is otherwise in German or English.
Based on this question I tried this:
% article example for classicthesis.sty
\documentclass[10pt,a4paper]{article} % KOMA-Script article scrartcl
\usepackage[LAE,T1]{fontenc}
\usepackage{lipsum}
\usepackage{url}
\usepackage[farsi,ngerman]{babel}
\usepackage[nochapters]{classicthesis} % nochapters
\begin{document}
\pagestyle{plain}
\title{\rmfamily\normalfont\spacedallcaps{the title}}
\author{\spacedlowsmallcaps{My Name}}
\date{} % no date
\maketitle
\begin{abstract}
\noindent\lipsum[1] Just a test.\footnote{This is a footnote.}
\end{abstract}
\tableofcontents
\clearpage
{\selectlanguage{farsi}
\begin{paracol}{2}
\poemtitle{دست برداشتن به مناجات به دستیاری ارباب حاجات}
\switchcolumn
\poemtitle{}
\switchcolumn
\begin{verse}
خداوند ز هستی ساده بودیم\\
نخست از نیست ما را هست کردی\\
ز ضعف ناتوانایی رهاندی\\
فرستادی به ما روشن کتابی\\
میان نیک و بد تخلیط کردیم\\
ره فرمودنیها کم سپردیم\\
تو نگذشتی ز دستور عنایت\\
بر آن نور از تو گیرم پوششی نیست\\
ز ناکوشیدن خود در خروشیم\\
چو دانا همچو نادان گشته غرق است\\
دستانهای نفس ناخوش آهنگ \\
در آن تنگی که ما باشیم و آهی\\
ازان ره خوان سوی درگاه ما را
\end{verse}
\switchcolumn
\begin{verse}
ز بیم نیستی آزاده بودیم\\
به قید آب و گل پابست کردی\\
ز نادانی به دانایی رساندی\\
به امر و نهی فرمودی خطابی\\
گهی افراط و گه تفریط کردیم\\
به نفرمودنیها پا فشردیم\\
نپوشیدی ز ما نور هدایت\\
چه حاصل زان چو از ما کوششی نیست\\
بده توفیق کوشش تا بکوشیم\\
ز دانش تا به نادانی چه فرق است\\
ز مکن بر ما رهِ حسن عمل تنگ\\
ز رحمت سوی ما بگشای راهی\\
به ایمان بر برون همراه ما را
\end{verse}
\switchcolumn
\end{paracol}
}
\subsection{A Subsection}
\section{A Section}
\lipsum[1]
% bib stuff
\nocite{*}
\addtocontents{toc}{\protect\vspace{\beforebibskip}}
\addcontentsline{toc}{section}{\refname}
\bibliographystyle{plain}
\bibliography{../Bibliography}
\end{document}
Unfortunately, paracol does not seem to work properly in the RTL environment. The two columns don't appear next to each other as I was hoping, but rather like this:
I am aiming for something that roughly looks like this: 
This is a problem I will face over and over again, so an elegant solution would be favourable. The general scheme is part of the content in two columns and part in one (not necessarily the heading), like so. For now I am seeking a solution to have the poem in two columns.

