在公式中拆分长文本

在公式中拆分长文本

我需要插入一个包含文本的公式。我的问题是这个文本很长,超出了页边距,所以我试图分割行,以便它能够很好地适合页面。到目前为止,我尝试过的所有方法都没有奏效,我请求您提供一些帮助。

\begin{description}
    \item[Caso $\bm{\Leftarrow}$] È verificato per i teoremi della sezione \ref{closprop}.
    \item[Caso $\bm{\Rightarrow}$] Sia $L$ un linguaggio regolare tale che $L = L(\mathcal{M})$, 
                  $\mathcal{M}$ è un DFA con stati $q_1, \ldots, q_n$,  
                  definito come di consueto e sia $A = \{s_1, s_2, \ldots, s_k\}$. 
                  Definiamo l'insieme $R^k_{i,j}$ nel modo seguente:
                ${R^k_{i,j} = \left\{x \in A^* \mid \delta^*(q_i, x) = q_j \text{ e } \mathcal{M} 
                \text{ nel processare la stringa passa solo per stati } q_l \text { con } l \leq k\right\}}$
    \end{description}

这是我的问题:

enter image description here

感谢你的协助。

答案1

我只是想把文本从数学模式中提炼出来:

enter image description here

\documentclass[a4paper]{article}

\usepackage[italian]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

\title{Your Paper}
\author{You}

\begin{document}
\begin{description}
\item[Caso $\Leftarrow$] È verificato per i teoremi della sezione 
\item[Caso $\Rightarrow$] Sia $L$ un linguaggio regolare tale che $L = L(\mathcal{M})$, $\mathcal{M}$ è un DFA con stati $q_1, \ldots, q_n$, definito come di consueto e sia $A = \{s_1, s_2, \ldots, s_k\}$. Definiamo l'insieme $R^k_{i,j}$ nel modo seguente:
$\displaystyle
R^k_{i,j} = \{x \in A^* \mid \delta^*(q_i, x) = q_j \text{ e } \mathcal{M}$  nel processare la stringa passa solo per stati 
$\displaystyle q_l \text { con } l \leq k\}$
\end{description}


\end{document}

或者center在显示器周围有环境:

enter image description here

相关内容