-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
114 lines (94 loc) · 2.46 KB
/
main.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
\documentclass[aspectratio=169]{beamer}
\usepackage[isSlide]{uiplatex}
\usepackage{lipsum}
\title{template}
\institute{}
\author{}
\date{\empty}
\begin{document}
\maketitle
\begin{frame}{OUTLINE}{}
\tableofcontents
\end{frame}
\section{my tools}
\begin{frame}{myitemize}
\begin{myitemize}
\item This
\item is
\item my
\item itemize
\end{myitemize}
\end{frame}
\begin{frame}[fragile]{lstpython}
\begin{marker}
fragile環境に設定する.
\end{marker}
\begin{lstpython}
print("hello, world")
\end{lstpython}
\end{frame}
\section{tcolorbox}
\begin{frame}{mybox}{}
\begin{mybox}
This is mybox.
\end{mybox}
\end{frame}
\begin{frame}{point}{}
\begin{point}{point}
This is point.
\end{point}
\begin{point}{point and tcblower}
This is point.
\tcblower
This is tcblower.
\end{point}
\end{frame}
\begin{frame}{trititle}{}
\begin{trititle}{trititle}
This is trititle.
\end{trititle}
\end{frame}
\begin{frame}{marker}{}
\begin{marker}
This is marker.
\end{marker}
\end{frame}
\begin{frame}[fragile]{commandbox}{}
\begin{marker}
fragile環境に設定する.
\end{marker}
\commandbox*{cd "My Documents"} changes to directory \commandbox{My Documents}. \\
\commandbox*{dir /A} lists the directory content. \\
\commandbox*{copy example.txt d:\target} copies \commandbox{example.txt} to
\commandbox{d:\target}.
\end{frame}
\begin{frame}[fragile]{commandshell}{}
\begin{fullcommandshell}
ls -al
cd /usr/lib
\end{fullcommandshell}
\begin{commandshell}
ls -al
cd /usr/lib
\end{commandshell}
\end{frame}
\section{appendix}
\begin{frame}[fragile]{fontawesome5}{}
\faGithub \\
\faRust \\
\faPython \\
\end{frame}
\section*{bib}
\begin{frame}[noframenumbering, allowframebreaks]{参考文献}{}
\mybox{ref.bibに書き込む.}
\begin{enumerate}
\item lualatex main.tex
\item pbibtex main
\item lualatex main.tex
\end{enumerate}
% \scriptsize
\beamertemplatetextbibitems
\bibliographystyle{junsrt}
\bibliography{ref}
\end{frame}
\end{document}