排版 Kampé de Fériet 功能

排版 Kampé de Fériet 功能

我正在尝试重现Kampé de Fériet 活动在论文中排版。以下是截图: 在此处输入图片描述

以下是我得到的信息:

\documentclass{article}

\usepackage{amstext, amsmath, amssymb}

\makeatletter
\newcommand{\longdash}[1][2em]{%
  \makebox[#1]{$\m@th\smash-\mkern-7mu\cleaders\hbox{$\mkern-2mu\smash-\mkern-2mu$}\hfill\mkern-7mu\smash-$}}
\makeatother
\newcommand{\omitskip}{\kern-\arraycolsep}
\newcommand{\llongdash}[1][2em]{\longdash[#1]\omitskip}
\newcommand{\rlongdash}[1][2em]{\omitskip\longdash[#1]}


\begin{document}

\begin{equation}
F_{2:0:0}^{0:2:1}\left[{\llongdash :\dfrac{a+b+1}{2},\dfrac{a-b+1}{2};1\atop \dfrac{a+b+3}{2},\dfrac{a-b+3}{2}:\llongdash;\rlongdash}\Bigg\vert x\dfrac{y^2}{4},\dfrac{y^2}{4}\right]
\end{equation}

\end{document}

结果是: 在此处输入图片描述

很接近,但并不完全一样。下标和下标似乎在水平方向上略有偏移。更糟糕的是,参数(或函数的参数)似乎也未对齐。有什么建议吗?

长破折号借鉴自这里

答案1

您可以使用数组。通过将它们设置为空子公式,您可以获得交错的下标和上标。

\documentclass{article}

\usepackage{amsmath}

\newcommand{\linefill}{% a variation on \rightarrowfill
  {-}\mkern-7mu
  \cleaders\hbox{$\mkern-2mu-\mkern-2mu$}\hfill
  \mkern-7mu{-}%
}

\begin{document}

\begin{equation}
F{}_{2:0:0}^{0:2:1}
  \left[
   \setlength{\arraycolsep}{0pt}% local assignment
   \begin{array}{c@{{}:{}}c@{;{}}c}
   \linefill & \dfrac{a+b+1}{2},\dfrac{a-b+1}{2} & \quad 1 \\[1ex]
   \dfrac{a+b+3}{2},\dfrac{a-b+3}{2} & \qquad\linefill & \linefill
   \end{array}
   \;\middle|\;
   x\dfrac{y^2}{4},\dfrac{y^2}{4}
 \right]
\end{equation}

\end{document}

在此处输入图片描述

答案2

arrays、\dfracs 和s的混合使用\phantom

在此处输入图片描述

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[
  F \mathstrut_{2:0;0}^{0:2;1}
    \left[
      \begin{array}{@{} c @{:} c @{;} c @{;}}
        \dfrac{\phantom{\mu + \nu + 3, \mu - \nu + 3}}{\phantom{2}} & 
          \dfrac{\mu + \nu + 1}{2}, \dfrac{\mu - \nu + 1}{2} &
          1 \\
        \dfrac{\mu + \nu + 3}{2}, \dfrac{\mu - \nu + 3}{2} &
          \dfrac{\phantom{\mu + \nu + 1, \mu - \nu + 1}}{\phantom{2}} &
          \dfrac{\phantom{0}}{\phantom{0}}
      \end{array}
      a \dfrac{z^2}{4}, \dfrac{z^2}{4}
    \right]
\]

\end{document}

相关内容