Skip to content

Instantly share code, notes, and snippets.

@hurutoriya
Last active August 29, 2015 14:16
Show Gist options
  • Save hurutoriya/a14984eaa70c78d9b95a to your computer and use it in GitHub Desktop.
Save hurutoriya/a14984eaa70c78d9b95a to your computer and use it in GitHub Desktop.
My beamer templete
\documentclass[dvipdfmx]{beamer}
%%%%% VIEW %%%%%
\usetheme{Szeged}
\usecolortheme{orchid}
\usefonttheme{professionalfonts} % Math Font
\setbeamertemplate{footline}[frame number] % only frame number in footer
\setbeamertemplate{navigation symbols}{} % remove navigation symbol
\renewcommand{\familydefault}{\sfdefault}% font chenge to Sans-serif in English
\renewcommand{\kanjifamilydefault}{\gtdefault}% font chenge to Sans-serif in Japanese
%%%%% Numered figure
\setbeamertemplate{caption}[numbered]
%%%%% Fiture, Table Title Rename %%%%E%
\renewcommand{\figurename}{図}
\renewcommand{\tablename}{表}
\usepackage{bm} % Bold charactor package for math
\usepackage[footnotesize, bf]{caption}
\newcommand{\argmin}{\mathop{\rm arg~min}\limits}
%%%% Definition %%%%%
\usepackage{amsmath,amssymb}
\usepackage{amsthm}
\theoremstyle{definition}
% Japanese
\newtheorem{theorem_ja}{定理}
%%%%%%%%%
\title{}
\subtitle{}
\author{}
\institute{}
\date{\today} % Print Build time
%%%%% Start Slide part %%%%%
\begin{document}
\begin{frame}
\titlepage % Generated Title Page by preamble params
\end{frame}
\begin{frame}
\tableofcontents % Generated tabele of contents by section tag
\end{frame}
\section{Introduction}
\begin{frame}
\frametitle{Frame title}
\begin{column}{0.5\textwidth} % Split 50% and 50%
\end{column}
\begin{column}{0.5\textwidth}
\begin{figure}[htb]
\centering
\includegraphics[width=3.5cm,clip]{example.eps}
\caption{Title of figure}
\end{figure}%
\end{column}
\end{columns}
\end{frame}
\begin{frame}
\frametitle{Split Slide}
\begin{columns}[t]
\begin{column}{0.5\textwidth} % Split 50% and 50%
\end{column}
\begin{column}{0.5\textwidth}
\end{column}
\end{columns}
\end{frame}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment