latex/beamer/\343\202\275\343\203\274\343\202\271\343\202\263\343\203\274\343\203\211\343\201\256\346\214\277\345\205\245.md
... ...
@@ -0,0 +1,16 @@
1
+[Code listing in LaTeX beamer presentation frames - Stack Overflow](https://stackoverflow.com/questions/3892673/code-listing-in-latex-beamer-presentation-frames)
2
+
3
+`fragile`オプションが必要.
4
+
5
+```latex
6
+\begin{frame}[fragile]
7
+ \frametitle{Test}
8
+ \begin{lstlisting}
9
+ public class SimpleClass {
10
+ public static void main(String[] args) {
11
+ System.out.println("Hello!");
12
+ }
13
+ }
14
+ \end{lstlisting}
15
+\end{frame}
16
+```
... ...
\ No newline at end of file