내가 보려고 정리하는 Latex 사용법 - Algorithm 작성편
\begin{algorithm}[h]
\label{Algorithm Label}
\SetKwInput{KwInput}{Input} % Set the Input
\SetKwInput{KwOutput}{Output} % set the Output
\DontPrintSemicolon
\KwInput{Your Input}
\KwOutput{Your output}
\KwData{Testing set $x$}
\BlankLine
% Set Function Names
\SetKwFunction{FMain}{Main}
\SetKwFunction{FSum}{Sum}
\SetKwFunction{FSub}{Sub}
% Write Function with word ``Function''
\SetKwProg{Fn}{Function}{:}{}
\Fn{\FSum{$first$, $second$}}{
a = first\\
b = second\\
sum = first + second\\
\KwRet sum\\
}
\\
% Write Function with word ``Def''
\SetKwProg{Fn}{Def}{:}{}
\Fn{\FSub{$first$, $second$}}{
a = first\\
b = second\\
sum = first - second\\
\KwRet sum\\
}
\\
\SetKwProg{Fn}{Function}{:}{\KwRet}
\Fn{\FMain}{
a = 5\\
b = 10\\
Sum(5, 10)\\
Sub(5, 10)\\
print Sum, Sub\\
\KwRet 0\\
}
\caption{Algorithm Name}
\end{algorithm}
'Basic IT Knowledge' 카테고리의 다른 글
Merge Sort - 공부하는 도비 (0) | 2022.08.06 |
---|---|
Bubble Sort - 공부하는 도비 (0) | 2022.08.06 |
Slideshare에서 PPT(files) 무료로 다운 받기 - 공부하는 도비 (0) | 2022.07.22 |
OneDrive 오류, "n 폴더의 복사본이 두 개 있습니다." - 공부하는 도비 (0) | 2021.03.27 |
VirtualBox오류, VMware오류, SVM모드 활성화 방법, AMD-V is disavled in the BIOS (or by the host OS) 오류 해결 - 공부하는 도비 (2) | 2020.05.29 |