답변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
IMHO 귀하의 공식은 알고리즘에 있으며 ||
"또는"을 나타냅니다. 그래서 당신은 살펴 봐야합니다알고리즘 패키지. 어쨌든 이것은 알고리즘이 아니지만 알고리즘적인 답변입니다.
\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}