سلام
من برای رسم جدول پیوست شده از کد زیر استفاده کردم که وقتی کد رو توی متن فارسی میارم، جدول به صورت برعکس یعنی قرینه ی حالتی که هست نشان داده می شود. برای رفع این مشکل باید چه چیزی رو تغییر بدم؟
\usepackage{multirow}
\begin{table}[]
\centering
\caption{My caption}
\label{my-label}
\begin{tabular}{|l|l|l|l|}
\hline
\multicolumn{4}{|c|}{A} \\ \hline
\multicolumn{3}{|c|}{\begin{tabular}[c]{@{}c@{}}C\\ D\end{tabular}} & B \\ \hline
\begin{tabular}[c]{@{}l@{}}H\\ I\end{tabular} & G & \multirow{2}{*}{F} & \multirow{3}{*}{E} \\ \cline{1-2}
\begin{tabular}[c]{@{}l@{}}L\\ M\\ N\end{tabular} & K & & \\ \cline{1-3}
\begin{tabular}[c]{@{}l@{}}Q\\ R\end{tabular} & P & O & \\ \hline
\end{tabular}
\end{table}