答案1
我不知道它看起來是否很棒,但是你想要這樣的東西嗎?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{split}
\text{PTK} = & \text{PRF}\left( \text{PMK}, \text{"Pairwise key expansion"} || \min(\text{AA}, \text{SPA}) || \right. \\
& \left. \qquad \max(\text{AA}, \text{SPA})|| \min(\text{ANonce}, \text{SNonce}) || \max(\text{ANonce},\text{SNonce})\right)
\end{split}
\]
\end{document}
答案2
將 Ignasi 的方法更進一步...
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{split}
\text{PTK} = \text{PRF}\bigl( &\text{PMK}, \text{``Pairwise key expansion''} \\& || \min(\text{AA}, \text{SPA}) \\
& || \max(\text{AA}, \text{SPA})\\&|| \min(\text{ANonce}, \text{SNonce}) \\&|| \max(\text{ANonce},\text{SNonce})\bigr)
\end{split}
\]
\end{document}
MFGA
答案3
恕我直言,你的公式是在演算法中並且||
代表「或」。所以你應該看看演算法包。無論如何,這是一個非演算法但演算法的答案:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{array}{r@{}l@{}l}
\text{PTK}=PRF&(PMK, & \text{``Pairwise key expansion''}\\
&& || \min(AA,SPA)\\
&& || \max(AA,SPA)\\
&& || \min(ANonce,SNonce)\\
&& || \max(ANonce,SNonce)\\
&)&
\end{array}
\]
\end{document}
編輯1:改進版本
我比較喜歡這種方式。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{array}{rl}
\text{PTK}=PRF(&\\
& PMK,\\
& (\\
& \quad\text{``Pairwise key expansion''}\\
& \quad||\min(AA,SPA)\\
& \quad||\max(AA,SPA)\\
& \quad||\min(ANonce,SNonce)\\
& \quad||\max(ANonce,SNonce)\\
& )\\
)&
\end{array}
\]
\end{document}
答案4
我有兩個建議。最重要的是為文件中的特定物件類型正確定義宏,以確保一致性。
\documentclass{article}
\usepackage{amsmath}
\newcommand{\OOR}{\mathrel{\|}}
\newcommand{\tvar}[1]{\mathrm{#1}}
\newcommand{\tdesc}[1]{\textup{``#1''}}
\begin{document}
\[
\begin{aligned}
\tvar{PTK}=\tvar{PRF}\bigl(
&\tvar{PMK},\tdesc{Pairwise key expansion} \\
& \OOR \min(\tvar{AA},\tvar{SPA})\\
& \OOR \max(\tvar{AA},\tvar{SPA})\\
& \OOR \min(\tvar{ANonce},\tvar{SNonce})\\
& \OOR \max(\tvar{ANonce},\tvar{SNonce}) \bigr)
\end{aligned}
\]
\begin{multline*}
\tvar{PTK}=\tvar{PRF}\bigl(
\tvar{PMK},\tdesc{Pairwise key expansion}
\OOR \min(\tvar{AA},\tvar{SPA}) \OOR \\
\max(\tvar{AA},\tvar{SPA})
\OOR \min(\tvar{ANonce},\tvar{SNonce})
\OOR \max(\tvar{ANonce},\tvar{SNonce}) \bigr)
\end{multline*}
\end{document}