如何关闭 \parbox 中的自动文本对齐?

如何关闭 \parbox 中的自动文本对齐?

以下代码产生下图中的结果。

如何避免在以“创建挑战”开头的行进行文本对齐?我尝试应用建议的方法这里但就我而言,它不起作用。

\begin{figure}
\centering
\fbox{
    \parbox{\textwidth}{
\centerline{\textbf{Protocol $\Pi_{GR}$}}
\bigbreak
Parties $\mathcal{P}$ = \{$\mathcal{P}_{1}$,..., $\mathcal{P}_{n}$\} interact with each other and with $\mathcal{F}_{SmartContract}$, $\mathcal{F}_{RandomCommittee}$, $\mathcal{F}_{Voting}$ as follows:
\bigbreak
\textbf{Create Challenge}: On input $(\textsc{Create-Challenge}, sender, value)$ send $(\textsc{Create-Challenge}, sender, value)$ to $\mathcal{F}_{SmartContract}$.
\newline
\textbf{Accept Challenge}:
\newline
    }
}
\caption{Protocol $\Pi_{GR}$.} \label{fig:sm}
\end{figure}

代码结果

如果我应用\parbox{\textwidth}{\raggedright它,它会更接近我想要的,但它不会将数学表达式分成两行。

应用建议的结果

相关内容