pb-다이어그램 패키지 사용

pb-다이어그램 패키지 사용

pb-diagram 패키지 사용에 어려움이 있습니다. 나는 아래 출력과 같기를 원합니다. 저를 도와주세요! 매우 감사합니다!

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

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

답변1

몇 분 동안 tikz-cd; with보다 품질이 훨씬 좋고 pb-diagram구문도 훨씬 쉽습니다.

\documentclass{article}
\usepackage{amsmath,amssymb}
\usepackage{tikz-cd}

\newcommand{\id}{\mathit{id}}

\begin{document}

\begin{tikzcd}
& A\otimes A \arrow[dd,"m"] \\
k\otimes A \arrow[ur,"u\otimes\id"] \arrow[dr,"s"] &&
  A\otimes k \arrow[ul,swap,"\id\otimes u"] \arrow [dl,swap,"s"] \\
& A
\end{tikzcd}

\bigskip

\begin{tikzcd}[column sep=4em,row sep=3em]
\mathbb{K}\otimes C &
  C\otimes C \arrow[l,swap,"\varepsilon_C\otimes\mathbf{1}_C"]
             \arrow[r,"\mathbf{1}_C\otimes\varepsilon_C"] &
  C\otimes\mathbb{K} \\
& C \arrow[ul,swap,"\sim"]
    \arrow[u,"\Delta_C" description]
    \arrow[ur,"\sim"]
\end{tikzcd}

\bigskip

\begin{tikzcd}[column sep=3em,row sep=3em]
C\otimes C\otimes C & C\otimes C \arrow[l,swap,"\Delta\otimes\id"] \\
C\otimes C \arrow[u,"\id\otimes\Delta"] &
  C \arrow[l,"\Delta"] \arrow[u,swap,"\Delta"]
\end{tikzcd}

\bigskip

\begin{tikzcd}
& C\otimes C \arrow[dl,swap,"\varepsilon\otimes\id"]
             \arrow[dr,"\id\otimes\varepsilon"] \\
k\otimes C && C\otimes k \\
& C \arrow[ul,"{-}\otimes 1"]
    \arrow[uu,"\Delta"]
    \arrow[ur,swap,"1\otimes{-}"]
\end{tikzcd}

\end{document}

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

관련 정보