Hello,

I just run into a problem with the publish style "slides":

,----[ test.muse ]---
| <slide title="test">
| 
| <example>
| test
| </example>
| 
| </slide>
`----

Output:

,----[ parts from test.tex ]---
| \begin{frame}
| \frametitle{test}
| 
| \begin{quote}
| \begin{verbatim}
| test
| \end{verbatim}
| \end{quote}
| 
| \end{frame}
`----

This does not compile with latex.

It should be 

\begin{frame}[fragile]
\frametitle{test}

\begin{quote}
\begin{verbatim}
test
\end{verbatim}
\end{quote}

\end{frame}

note the "fragile" option to the frame environment. See
www.ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
Page 22 Section 3.13 Verbatim Text

An option to <slide> might help, but I'm not sure how to
implement it:

<slide title="test" fragile="t">

</slide>

leads to 

\begin{frame}[fragile]

\end{frame}


Regards,

Philipp

_______________________________________________
Planner-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/planner-el-discuss

Reply via email to