다음 시퀀스를 작성하는 방법

다음 시퀀스를 작성하는 방법

다음 그림의 라텍스 코드를 작성하는 데 도움을 주시겠습니까?여기에 이미지 설명을 입력하세요

답변1

나는 아마도 현재의 공식에서 그 질문에 대답하지 말아야 할 것입니다. 다음 질문에 대해서는 Alan Munn과 Peter Wilson의 조언을 머리 속에 담아두시기 바랍니다. 귀하는 이 사이트를 처음 방문하는 것이 아니므로 규칙을 준수하십시오.

나는 당신에게 시작점을 줄 것입니다. 나는 당신이 스스로 그것을 완료할 수 있다고 확신합니다. 결과

\documentclass{article}
\begin{document}
    \[
        \underbrace{
            \underbrace{
                \underbrace{
                    \underbrace{
                    1}_1
                1}_2
            1}_3
        -1}_2
    \]
\end{document}

답변2

전체 다이어그램에 대한 솔루션은 다음과 같습니다.

여기에 이미지 설명을 입력하세요

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for '\underbrace' macro
\let\ub\underbrace   % handy shortcut macro
\usepackage[lite]{mtpro2} % optional
\begin{document}
$\ub{\ub{\ub{\ub{\ub{\ub{\ub{\ub{1}_1 1}_2 1}_3 -1}_2 1}_3 -1}_2 -1}_1 -1}_0$
\end{document}

부록내 생각으로는 맨 윗줄에 -(마이너스) 기호뿐만 아니라 +(플러스) 기호도 포함되어 있으면 다이어그램이 훨씬 더 보기 좋을 것 같습니다.

여기에 이미지 설명을 입력하세요

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for '\underbrace' macro
\let\ub\underbrace   % handy shortcut macro
\usepackage[lite]{mtpro2} % optional
\begin{document}
$\ub{{\ub{{\ub{{\ub{{\ub{{\ub{{\ub{{\ub{1}_1} +1}_2} +1}_3} -1}_2} +1}_3} -1}_2} -1}_1} -1}_0$
\end{document}

관련 정보