缩进:禁用(全局)

缩进:禁用(全局)

问题

鉴于beamer类别。

我可以全局删除缩进吗?

\setlength{\parindent}{0em}没有成功。

例子

这是一个简单的例子:

\documentclass{beamer}
\begin{document}
\begin{frame}
\visible<1->{
Some formula:
$$a^2+b^2=c^2$$}
\visible<2->{
More formulas:
$$z=a+ib=re^{i\phi}$$
Some text.}
\end{frame}
\end{document}

答案1

注意多余的空格(代码中的换行符相当于空格);我在下面注释掉了这些空格:

\documentclass{beamer}
\begin{document}
\begin{frame}
\visible<1->{%
Some formula:
\[a^2+b^2=c^2\]
}%
\visible<2->{%
More formulas:
\[z=a+ib=re^{i\phi}\]
Some text.}
\end{frame}
\end{document}

在此处输入图片描述

顺便说一句,不要$$...$$在 LaTeX 文档中使用;\[...\]而是使用;参见为什么 \[ ... \] 比 $$ ... $$ 更可取?

相关内容