如何使用 Beamer 在与文本相同的行上开始项目化

如何使用 Beamer 在与文本相同的行上开始项目化

我正在做演讲,而不是在此处输入图片描述

我希望第一项出现在“betrachte”旁边。因此,它基本上就是在如何在与文本相同的行上开始逐项列举? 但我无法让它与 Beamer 一起工作。有人能帮忙吗?

    \documentclass{beamer}

\usepackage{multicol}
\usepackage{framed, color}
\definecolor{shadecolor}{RGB}{228,230,231}
%Zitate und todos
\usepackage{url}

% Reelle, Natürliche, Ganze, Rationale Zahlen
\newcommand{\R}{\ensuremath{\mathbb{R}}}
\newcommand{\N}{\ensuremath{\mathbb{N}}}
\newcommand{\Z}{\ensuremath{\mathbb{Z}}}
\newcommand{\Q}{\ensuremath{\mathbb{Q}}}

% Fraktur für Strukturen
\newcommand{\A}{\ensuremath{\mathfrak A}}
\newcommand{\B}{\ensuremath{\mathfrak B}}
\newcommand{\C}{\ensuremath{\mathfrak C}}
\newcommand{\D}{\ensuremath{\mathfrak D}}
\newcommand{\I}{\ensuremath{\mathfrak I}}

% Makros für logische Operatoren
\newcommand{\xor}{\ensuremath{\oplus}} %exklusives oder
\newcommand{\impl}{\ensuremath{\rightarrow}} %logische Implikation
\newcommand{\Impl}{\ensuremath{\Rightarrow}}

\renewcommand{\phi}{\varphi}
\renewcommand{\theta}{\vartheta}
\renewcommand{\epsilon}{\varepsilon}
\newcommand{\w}{\omega}
\renewcommand{\*}{\cdot}

\title{Title}
%\subtitle{Subtitle Here}
\author{author}
\institute{}
\date{}


\begin{document}
\begin{frame}[t]{$ (\N, \*)  $ ist nicht-automatisch}
    \begin{block}{}
        Monoide mit Submonoid $ (\N, \*) $ sind nicht-automatisch.
    \end{block}
    ang. doch\\
    Betrachte 
    \begin{itemize}
        \item $ \{|p|_L: p\text{ prim} \land |p|_L \leq n\} = \{a_0 <_{llex} ... <_{llex} a_{r_{n-1}}\}$\\
        \item $ F_n = \{ a_0^{\beta_0} \* ... \* a_{r_{n-1}}^{\beta_{r_{n-1}}}: 0 \leq \beta_i < 2^n\} $.
    \end{itemize}
    abschätzen mit s.o.:\\ 
    Einzelne Faktoren: $ |a_i^{\beta_i}|_L \textcolor{red}{\leq} |a_i|_L + p_{\*} \lceil log(\beta_i)\rceil \leq n + p_{\*} \lceil log(\beta_i)\rceil \leq n(1+p_{\*})$. \\
    Konkretes Produkt: $ | a_0^{\beta_0} \* ... \* a_{r_{n-1}}^{\beta_{r_{n-1}}}|_L \leq n(1+p_{\*}) + p_{\*} \lceil log(r_n)\rceil $\\
\end{frame}
\end{document}

答案1

也许表格就足够了?

在此处输入图片描述

    Betrachte
    \begin{tabular}[t]{@{\textbullet\ }l}
      $ \{|p|_L: p\text{ prim} \land |p|_L \leq n\} = \{a_0 <_{llex} ... <_{llex} a_{r_{n-1}}\}$\\
      $ F_n = \{ a_0^{\beta_0} \* ... \* a_{r_{n-1}}^{\beta_{r_{n-1}}}: 0 \leq \beta_i < 2^n\} $.
    \end{tabular}
    
    abschätzen mit s.o.:\\ 

相关内容