注释中的逐字注释中存在 # 问题

注释中的逐字注释中存在 # 问题

我正在尝试#在注释内的逐字文本中使用字符:

\begin{框架}[易碎]

\note{\begin{逐字}
 #
\结束{逐字}
}

\结束{框架}

这会产生以下错误:

> ! \beamer@todo 定义中的参数数量非法。
> 再次阅读 >
>                    
> l.5}

我怎样才能#以不破坏乳胶编译的方式编写字符?

先谢谢了,

PS:这与 pandoc 中的以下问题有关: https://github.com/jgm/pandoc/issues/3293

答案1

我不知道如何获取您可能需要的特定布局(没有提供信息),但该verbatimbox包可用于将verbatim内容放入其中\note

\AtBeginDocument{\setbeameroption{show notes on second screen=left}}
\documentclass{beamer}
\usepackage{verbatimbox}
\usepackage{pgfpages}
\setbeamertemplate{note page}{\insertnote\par}
\begin{document}
\begin{frame}[fragile]
\begin{verbbox}
 # verbatim
 \material $%here
\end{verbbox}
\note{\theverbbox}
Here is my slide
\end{frame}
\end{document}

在此处输入图片描述

相关内容