如何在这个 Beamer TeX 中将符号后的句子左对齐?

如何在这个 Beamer TeX 中将符号后的句子左对齐?

在这个 TeX 中,我希望第一行的“is”与第二行的“this”对齐。这怎么可能呢?

\documentclass[
    aspectratio=169
]{beamer}

\usepackage{fontawesome}


\usetheme{Darmstadt}        

\setbeamerfont{section in head/foot}{size=\fontsize{4pt}{5pt}\selectfont}


\begin{document}

\section{Descriptive Outline 1}
\subsection{Outline}
\begin{frame}
\frametitle{Outline}

 \faQuestionCircle \vspace{3mm} Is there a question about the this topic that has not been answerd nowhere yet in this text ?

\end{frame}


\end{document} 

答案1

使用itemize如下环境

\documentclass[
aspectratio=169
]{beamer}

\usepackage{fontawesome}


\usetheme{Darmstadt}        


\setbeamerfont{section in head/foot}{size=\fontsize{4pt}{5pt}\selectfont}



\begin{document}


\section{Descriptive Outline 1}

\subsection{Outline}

\begin{frame}

\frametitle{Outline}

\begin{itemize}
    \item[\faQuestionCircle] Is there a question about the this topic that has not been answerd nowhere yet in this text ?
\end{itemize}
\end{frame}


\end{document} 

在此处输入图片描述

答案2

像这样?

\documentclass[aspectratio=169]{beamer}

\usepackage{fontawesome}
\usepackage{linegoal}

\usetheme{Darmstadt}

\setbeamerfont{section in head/foot}{size=\fontsize{4pt}{5pt}\selectfont}

\begin{document}

\section{Descriptive Outline 1}
\subsection{Outline}
\begin{frame}
\frametitle{Outline}

 \faQuestionCircle\quad \vspace{3mm}\parbox[t]{5in}
 { Is there a question about this topic that has not been answered nowhere yet in this text ?}

\end{frame}

\end{document} 

在此处输入图片描述

相关内容