快速编写列表的方法

快速编写列表的方法

我用它beamer来制作演示幻灯片。在 中,通常会使用beamer很多列表。itemize

是否有类似 Markdown 的快速编写itemize列表的方法?

当需要如下列表时:

  • 氨基酸
  • bb
  • 抄送

在 LaTeX 中:

  \begin{itemize}
  \item
  aa
  \item
  bb
  \item
  cc
  \end{itemize}

在 Markdown 中,你可以直接写:

+ aa
+ bb
+ cc

Markdown 更简单、更快捷。我怎样才能使用 Markdown 风格的方式在 中实现相同的输出beamer

答案1

如果不使用pandoc,该outlines包是输入简单或嵌套列表的一个不错的选择:

姆韦

\documentclass{beamer}
\usepackage{outlines}
\begin{document}
\begin{frame}{Minimal working example}{Outline lists}
\begin{outline}
\1 First level
\1 First level again 
\2 Second level again
\3 Third level 
\3 Third level agaim
\end{outline}
Note that the 4th level is not allowed in Beamer
\begin{outline}[enumerate]
\1 First level
\2 Second level 
\1 First level again 
\2 Second level again
\3 Third level 
\3 Third level agaim
\0 Some normal text whitin outline environment. \par
\1 Another list
\end{outline}
\end{frame}
\end{document}

答案2

您可以用 Markdown 编写列表,然后使用以下方法将其转换为 LaTeX潘多克。该工具的网站包括一些演示其中包括从 Markdown 转换为 LaTeX 的示例。例如,一个演示显示了此文本的转换:

% Eating Habits
% John Doe
% March 22, 2005

# In the morning

- Eat eggs
- Drink coffee

# In the evening

- Eat spaghetti
- Drink wine

# Conclusion

- And the answer is...
- $f(x)=\sum_{n=0}^\infty\frac{f^{(n)}(a)}{n!}(x-a)^n$    

幻灯片beamer

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

使用命令

pandoc -t beamer SLIDES -o example8.pdf

相关内容