在这个 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}