-
Notifications
You must be signed in to change notification settings - Fork 3
/
code.tex
31 lines (25 loc) · 889 Bytes
/
code.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
%----------------------------------------------------------------------------
% Unofficial LaTex beamer theme for Seoul National University
%
% Copyright 2014 Lucy Park <[email protected]>
% http://lucypark.kr
%
% This file may be distributed and/or modified under the GNU GPL 3.0 or above
% http://www.gnu.org/licenses/gpl-3.0.html
%----------------------------------------------------------------------------
\documentclass[compress]{beamer}
\usetheme{snubeam}
\usepackage{beamerthemeshadow}
\usepackage{snucode}
\begin{document}
\begin{frame}[fragile]\frametitle{An example} % cf. https://code.google.com/p/minted/issues/detail?id=40
\begin{pythoncode}
>>> from konlpy.tag import Kkma
>>> from konlpy.utils import pprint
>>> kkma = Kkma()
\end{pythoncode}
\end{frame}
\begin{frame}[fragile]\frametitle{Another example}
\pythonfile{code.py}
\end{frame}
\end{document}