我怎样才能得到这个缩进?

我怎样才能得到这个缩进?

我怎样才能得到这个缩进?

在此处输入图片描述

我正在使用这个代码

\begin{tabular}{rp{14cm}} \toprule
    \multicolumn{2}{l}{\textbf{Algoritmo 2} Algoritmo de Guruswami-Sudán para códigos algebraico-geométricos} \\ \midrule
    &\textit{Interpolación:} Calcule un polinomio no cero $Q\in \mathbb{F}_q(X)[Y]$ de la forma
    $$Q=Q_0+Q_1Y+\cdots + Q_{\ell}Y^{\ell}$$\\[-1cm]
    &\hspace{0.4cm} \textit{satisfactorio:}\\[-0.7cm]
    &\begin{enumerate}[(i)]
        \item Para cualquier $j\in\{0,...,\ell \},Q_j\in L(F+(\ell-j)G)$;
        \item  Para cualquier $i\in\{0,...,n \}$ , la función $Q$ se anula en $(P_i, y_i)$ con multiplicidad de al menos $s$.
    \end{enumerate}\\[-0.4cm]
      & \textit{Búsqueda de raíces:} Calcule las raíces $f_1,...,f_m\; (m \leq \ell)$ de $Q(Y )$ que se encuentran en $\mathbb{F}_q(X)$ y genera la lista de palabras clave de la forma $(f_i(P_1),..., f_i(P_n))$ que están a una distancia máxima $t$ de $\pmb{y}$.\\ \bottomrule
        \end{tabular}

答案1

我同意@Clara 的观点,你应该熟悉一些与算法相关的包,特别是当你需要排版一个或两个以上的算法时。

为了快速且不太麻烦地修复您的排版问题,请考虑tabular按照下面显示的代码实施基于的解决方案。

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage[T1]{fontenc}
\usepackage[spanish]{babel}
\usepackage{array,booktabs,enumitem,ragged2e,amsmath,amssymb,bm}
% Define a column type that performs both hanging indentation
% and line-breaking automatically:
\newcolumntype{P}[1]{>{\RaggedRight\hangafter=1\hangindent=1em}p{#1}}

\begin{document}

\noindent % <-- important
\begin{tabular}{@{} P{\textwidth} @{}} % occupy full width of textblock
    \toprule
    \textbf{Algoritmo 2}\quad 
    Algoritmo de Guruswami-Sudán para códigos algebraico-geométricos \\ 
    \midrule
    \textit{Interpolación:} Calcule un polinomio no cero 
    $Q\in \mathbb{F}_q(X)[Y]$ de la forma
    \[
    Q=Q_0+Q_1Y+\cdots + Q_{\ell}Y^{\ell}
    \]
    satisfactorio:
    \begin{enumerate}[label=(\roman*),nosep]
        \item Para cualquier $j\in\{0,\dots ,\ell \}$, 
              $Q_j\in L(F+(\ell-j)G)$;
        \item Para cualquier $i\in\{0,\dots ,n \}$, 
              la función $Q$ se anula en $(P_i, y_i)$ 
              con multiplicidad de al menos $s$.
    \end{enumerate} 
    \textit{Búsqueda de raíces:} Calcule las raíces $f_1,\dots,f_m$ 
    $(m\leq\ell)$  de $Q(Y)$ que se encuentran en $\mathbb{F}_q(X)$ 
    y genera la lista de palabras clave de la forma 
    $(f_i(P_1),\dots , f_i(P_n))$ que están a una distancia 
    máxima $t$ de~$\bm{y}$. \\ 
    \bottomrule
\end{tabular}
\end{document}

相关内容