85 lines
3.5 KiB
TeX
Executable File
85 lines
3.5 KiB
TeX
Executable File
%==============================================================================
|
|
%== template for LATEX poster =================================================
|
|
%==============================================================================
|
|
%
|
|
%--A0 beamer slide-------------------------------------------------------------
|
|
\documentclass[final]{beamer} % use beamer
|
|
\usepackage[orientation=portrait,
|
|
size=a0, % poster size
|
|
scale=1.35 % font scale factor
|
|
]{beamerposter} % beamer in poster size
|
|
%
|
|
%--some needed packages--------------------------------------------------------
|
|
\usepackage[american]{babel} % language
|
|
\usepackage[utf8]{inputenc} % std linux encoding
|
|
\usepackage{booktabs}
|
|
\usepackage{multirow}
|
|
%
|
|
%==The poster style============================================================
|
|
\usetheme{cpbgposter} % our poster style
|
|
%--set colors for blocks (without frame)---------------------------------------
|
|
\setbeamercolor{block title}{fg=ngreen,bg=white}
|
|
\setbeamercolor{block body}{fg=black,bg=white}
|
|
%--set colors for alerted blocks (with frame)----------------------------------
|
|
%--textcolor = fg, backgroundcolor = bg, dblue is the jacobs blue
|
|
\setbeamercolor{block alerted title}{fg=white,bg=dblue!70}%frame color
|
|
\setbeamercolor{block alerted body}{fg=black,bg=dblue!10}%body color
|
|
%
|
|
\usecaptiontemplate{
|
|
\small
|
|
\structure{\insertcaptionname~\insertcaptionnumber:}
|
|
\insertcaption}
|
|
%==Titel, date and authors of the poster=======================================
|
|
%\title{Template for \LaTeX poster using the\\
|
|
%Computational Physics and Biophysics Group style}
|
|
%\title{Study of Muon Capture \\
|
|
%for $\boldsymbol{\mu^--e^-}$ Conversion Experiments}
|
|
\title{A Search for Muon to Electron Conversion at J-PARC}
|
|
%\title{A Search for $\boldsymbol{\mu-e}$ Conversion at J-PARC, COMET}
|
|
%\vskip0.5ex
|
|
%and a Study of Muon Capture Backgrounds}
|
|
\author{Tran Hoai Nam, on behalf of the COMET Collaboration}
|
|
\institute{Department of Physics, Graduate School of Science, Osaka Univerity}
|
|
\date{\today}
|
|
%
|
|
%==some usefull qm commands====================================================
|
|
% |x>
|
|
\newcommand{\ket}[1]{\left\vert#1\right\rangle}
|
|
% <x|
|
|
\newcommand{\bra}[1]{\left\langle#1\right\vert}
|
|
% <x|y>
|
|
\newcommand{\braket}[2]{\left< #1 \vphantom{#2}\,
|
|
\right\vert\left.\!\vphantom{#1} #2 \right>}
|
|
% <x|a|y>
|
|
\newcommand{\sandwich}[3]{\left< #1 \vphantom{#2 #3} \right|
|
|
#2 \left|\vphantom{#1 #2} #3 \right>}
|
|
% d/dt
|
|
\newcommand{\ddt}{\frac{d}{dt}}
|
|
% D/Dx
|
|
\newcommand{\pdd}[1]{\frac{\partial}{\partial#1}}
|
|
% |x|
|
|
\newcommand{\abs}[1]{\left\vert#1\right\vert}
|
|
% k_{x}
|
|
\newcommand{\kv}[1]{\mathbf{k}_{#1}}
|
|
\newlength{\sepwid}
|
|
\newlength{\onecolwid}
|
|
\newlength{\twocolwid}
|
|
\setlength{\sepwid}{0.04\paperwidth}
|
|
\setlength{\onecolwid}{0.28\paperwidth}
|
|
\setlength{\twocolwid}{0.60\paperwidth}
|
|
%==============================================================================
|
|
%==the poster content==========================================================
|
|
%==============================================================================
|
|
% Custom macros
|
|
\newcommand{\lagr}{\cal{L}}
|
|
\newcommand{\mueg}{$\mu^{+} \rightarrow e^{+}\gamma$~}
|
|
\newcommand{\meee}{$\mu \rightarrow eee$~}
|
|
\newcommand{\muenn}{$\mu \rightarrow e \nu \overline{\nu}$~}
|
|
\newcommand{\muenng}{$\mu \rightarrow e \nu \overline{\nu} \gamma$~}
|
|
\newcommand{\muec}{$\mu^{-} N \rightarrow e^{-} N$~}
|
|
\newcommand{\muecaz}{$\mu^{-} + N(A,Z) \rightarrow e^{-} + N(A,Z)$~}
|
|
|
|
\begin{document}
|
|
\include{contents}
|
|
\end{document}
|