Beamer 中的对齐问题

Beamer 中的对齐问题

使用下面的代码时,我的方程式超出了页面范围。我想将方程式分成两行以适应,但我做不到。请帮帮我。

\documentclass{beamer}
\newcommand\Fontvi{\fontsize{2}{6}\selectfont}
\usepackage[utf8]{inputenc}
\usepackage[compat=1.1.0]{tikz-feynman}
\usepackage{amsmath, amsthm, amssymb,amsfonts}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage{tcolorbox}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{tikz-feynman}
\setcounter{MaxMatrixCols}{20}
%\usepackage{breqn}
\usepackage{tikz-feynman} 
\usepackage{amsmath}
\newtheorem{rules}{Rule}
\usetheme{Antibes}
\usecolortheme{}
\title{Negative Dimensional Integral and Modified Method of Brackets}
\author[Sumit Banik]{\textbf {Work By-Sumit Banik\\ \footnotesize Supervised by: B Ananthanarayan}}
\institute{Indian Institute of Science\\Bangalore- 560012}
\date{}
\begin {document}
\begin{frame}
\frametitle{Negative Dimensional Integral Method}
\begin{itemize}
\item Using the above equation \eqref{3} and Gauss Summation Theorem for terminating hyper-geometric series  we get:
\begin{equation}
I(r,s)=\displaystyle{\pi^{d/2}(p^2)^{r+s+d/2}
\frac{\Gamma(r+1)\Gamma(s+1)\Gamma(1-r-s-d/2}{\Gamma(1+r+s+d/2)\Gamma(1-s-d/2)\Gamma(1-r-d/2)}}
\end{equation}
\end{itemize}
\end{frame}
\end{document}`

答案1

您需要做的就是移动分数中的前因子并删除方程编号。通常应避免在投影仪中使用方程编号。

\documentclass{beamer}
\newcommand\Fontvi{\fontsize{2}{6}\selectfont}
\usepackage{amsmath}
\usetheme{Antibes}
\usecolortheme{}
\begin {document}
\begin{frame}
\frametitle{Negative Dimensional Integral Method}
Using the above equation and Gauss Summation Theorem for terminating hyper-geometric series  we get:
\[
I(r,s)=
\frac{\pi^{d/2}(p^2)^{r+s+d/2}\Gamma(r+1)\Gamma(s+1)\Gamma(1-r-s-d/2}{\Gamma(1+r+s+d/2)\Gamma(1-s-d/2)\Gamma(1-r-d/2)}
\]
\end{frame}
\end{document}

在此处输入图片描述

相关内容