This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{frame}[fragile] | |
| \frametitle{Title} | |
| \begin{itemize} | |
| \item | |
| \end{itemize} | |
| \begin{lstlisting} | |
| \end{lstlisting} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{figure}[!htb] | |
| \centering | |
| \includegraphics[clip,width=15.0cm]{.eps} | |
| \caption{ } | |
| \label{ } | |
| \end{figure} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{block}{} %blue | |
| \end{block} | |
| \begin{alertblock}{} %red | |
| \end{alertblock} | |
| \begin{exampleblock}{} %green |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{columns}[T] % align columns | |
| \begin{column}{.48\textwidth} | |
| Left Part | |
| \end{column} | |
| \hfill | |
| \begin{column}{.48\textwidth} | |
| Right Part | |
| \end{column} | |
| \end{columns} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[report, 10.5pt,a4paper,oneside,openany]{jsbook} | |
| %--脚注の設定 | |
| \usepackage{natbib} | |
| \bibpunct[, ]{(}{)}{;}{and}{}{,} %本文での引用の体裁はここで整えられるみたい | |
| %目次に索引以外は出力する cf. http://www.howtotex.com/packages/how-to-add-bibliography-and-more-to-table-of-contents/ | |
| \usepackage[notindex, nottoc, notlof, notlot]{tocbibind} | |
| %数式用 | |
| \usepackage{amsmath} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[10pt, dvipdfmx]{beamer} | |
| \usetheme{Frankfurt} | |
| \setbeamersize{text margin left=11pt,text margin right=11pt} | |
| \usenavigationsymbolstemplate{} | |
| \usepackage{beamerthemeshadow} | |
| \let\oldfootnotesize\footnotesize | |
| \renewcommand*{\footnotesize}{\oldfootnotesize\tiny} | |
| \setbeamertemplate{footline}[frame number] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {\fontsize{9.5pt}{8pt}\selectfont } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{frame}<beamer> | |
| \frametitle{この章の内容} | |
| \tableofcontents[currentsection] | |
| \end{frame} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(ggplot2) | |
| library(reshape2) # melt()用 | |
| library(grid) ; library(gridBase) # 複数の図の配置 cf. http://d.hatena.ne.jp/dichika/20110116/1295183973 | |
| country_list = c("Egypt", "Armenia", | |
| "Afghanistan", "Azerbaijan", "Bosnia", "Cambodia", "Croatia", | |
| "Eritrea", "Kazakhstan", "South Africa", "Vietnam") | |
| for (country in country_list){ | |
| aid_amount <- AidData[AidData$recipient==country, c("Aid_All", "year", "p4_polity2", "Giniall")] # 全ての援助額 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| nnoremap O :<C-u>call append(expand('.'), '')<Cr>j | |
| "行番号を表示する | |
| set number | |
| "タブ幅の設定、Tabではなくスペース4つにする | |
| set tabstop=2 | |
| set noexpandtab |