具有多个参数的函数

具有多个参数的函数

我想将附件 .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}

在此处输入图片描述

相关内容