여러 인수가 있는 함수

여러 인수가 있는 함수

첨부된 파일을 .tex로 보내고 싶습니다. 을 사용해 보았지만 \begin{pmatrix}.....\end{pmatrix}필수 항목을 제공하지 않았습니다. 어떤 도움이라도 대단히 감사하겠습니다.

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

답변1

내 생각엔 이것이 당신이 찾고 있는 것 같아요.

\documentclass{article}

\begin{document}
\usepackage{amsmath}
\[
 2\phi_1 \biggl(
 \begin{matrix}
  az, a/z \\ ab
 \end{matrix}
 \biggm |
 q, \frac{bt}{a}
 \biggr)
\]

\end{document}

예제 코드 출력

pmatrix중간에 있는 수직 법칙 때문에 작동하지 않습니다.

답변2

다음은 텍스트 스타일과 표시 스타일의 크기를 변경하는 구현입니다.

\documentclass{article}
\usepackage{amsmath,mathtools,xparse}

\NewDocumentCommand{\hyper}{mommmm}{%
  \IfValueTF{#2}{\prescript{}{#2}{#1}^{}_{#3}}{#2^{}_{#3}}%
  \innerhyper{{#4}{#5}{#6}}
}

\makeatletter
\newcommand{\innerhyper}[1]{\mathpalette\inner@hyper{#1}}
\newcommand{\inner@hyper}[2]{\inner@@hyper{#1}#2}
\newcommand{\inner@@hyper}[4]{%
  \ifx#1\displaystyle\!\left(\else\bigl(\fi
  \begin{\ifx#1\displaystyle\else small\fi matrix}
  #2 \\ #3
  \end{\ifx#1\displaystyle\else small\fi matrix}
  \ifx#1\displaystyle\;\middle|\;\else\bigm|\fi
  #4
  \ifx#1\displaystyle\right)\else\bigr)\fi
}
\makeatother

\begin{document}

$\hyper{\phi}[2]{1}{az,a/z}{ab}{q,\frac{bt}{a}}$
\[
\hyper{\phi}[2]{1}{az,a/z}{ab}{q,\frac{bt}{a}}
\]

\end{document}

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

답변3

\documentclass[11pt]{article}
\usepackage{amsmath}

\begin{document}
  2$\phi_{1}$$\left(
           \begin{array}{ll|ll}
               az,  & a/z &    & bt\\
                    &     & q, & -\\
                    & ab  &    & a \\
            \end{array}
           \right)$
\end{document}

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

관련 정보