\documentclass[12pt]{beamer}
%\usepackage[orientation=portrait,size=a0,scale=1.0]{beamerposter} this is give us a nice poster for presentation in a0 size..
\usepackage{graphicx}
% \usebackgroundtemplate{
% \includegraphics[width=\paperwidth,height=\paperheight]{bg/11bg-prosper}
% }
%=====================================================
%\usepackage{beamerthemesplit}% // Activate for custom appearance
%=====================================================
%\usetheme{Antibes} % same as Warsaw
%\usetheme{AnnArbor} % only this theme without any colortheme looks good
%\usetheme{Bergen} % bad
%\usetheme{Berkeley} % + sidebartab good
%\usetheme{Berlin} % + wolverine good
%\usetheme{Boadilla} % ok
%\usetheme{Copenhagen} % bad
%\usetheme{Darmstadt}
%\usetheme{Dresden} % +wolverine ok
\usetheme{Frankfurt} % no
%\usetheme{Goettingen} % ok side bar rightside here
%\usetheme{Hannover} % same as Goettingen sidebar left side here
%\usetheme{Ilmenau} % not
%\usetheme{Luebeck}
%\usetheme{Madrid} % ok
%\usetheme{Malmoe}
%\usetheme{Marburg} % like it
%\usetheme{Montpellier} % plane + sidebartab good
%\usetheme{Pittsburgh} % plane
%\usetheme{Rochester} % basic and nice
%\usetheme{Singapore} %plane
%\usetheme{Warsaw} % good looking
%======================================================
\usecolortheme{wolverine} % + warsaw best looking
%\usecolortheme{albatross}
%\usecolortheme{beetle}
%\usecolortheme{beaver}
%\usecolortheme{crane}
%\usecolortheme{dove} %+ warsaw I love
%\usecolortheme{fly}
%\usecolortheme{orchid}
%\usecolortheme{whale}
%\usecolortheme{dolphin}
%\usecolortheme{seahorse}
%======================================================
%\usefonttheme{structureitalicserif}
%\usefonttheme{structurebold}
%\usefonttheme{serif}
%\usefonttheme{professionalfonts}
\usefonttheme{structuresmallcapsserif}
%======================================================
\useinnertheme{rounded}
%======================================================
%\useoutertheme{sidebar}
%======================================================
% most important thing I have made in this slide is to define colors.
\definecolor{somugreen}{RGB}{00,110,165}
\usecolortheme[named=somugreen]{structure}
% then do not use any other colortheme
%======================================================
\usepackage{array}
\usepackage{graphicx}
\usepackage{color}
\usepackage{subfigure}
\usepackage{epstopdf}
\usepackage{amsmath}
\usepackage{mathptmx}
%======================================================
\author{Somenath Jalal}
\title[B.Sc Physics, \today]{Physics of Atom-Photon interaction}
%\logo{%
%\includegraphics[width=2.4cm,height=0.7cm,keepaspectratio]{jnulogo}~%
% \includegraphics[width=0.7cm,height=1.0cm]{jnulogo}~%
%}
\subtitle{ (A Journal Club talk) }
\institute{Department of Physics \\ Hooghly Women's College}
%\institute{School of Physical Sciences \\ Jawaharlal Nehru University \\\scalebox{2}{\insertlogo}}
\date{\today}
%\AtBeginSection[]
%{
% \begin{frame}<beamer>{Outline}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
%}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
%\AtBeginSubsection[]
%{
% \begin{frame}<beamer>{Outline}
% \tableofcontents[currentsection,currentsubsection]
% \end{frame}
%}
%% If you wish to uncover everything in a step-wise fashion, uncomment
%% the following command:
%\beamerdefaultoverlayspecification{<+->}
\def\a{\hat{a}}
\def\adag{{\hat{a}}^\dagger}
\def\n{\hat{n}}
\begin{document}
\maketitle
\begin{frame}
\frametitle{This is my first slide}
\begin{alertblock}{}
\end{alertblock}
\begin{block}{\center \textbf{Abstract}}
This is what I am planning for today. We shall discuss on a very important physics topic. Let us say, Classical Ising Model. And if you are more interested, we shall learn about Quantum Ising model. This will help us in a wide range of Physics related understandings.
\end{block}
\end{frame}
\end{document}
How to put Index in you document?
Build latex twice
build Makeindex once
Again build latex twice
\documentclass[]{}
% - - - - -
% other usepackage things
% - -- - -
\usepackage{makeidx}
\makeindex
- - -
\begin{document}
.
.
I am somenath jalal. i use fortran, mathematica, grace{\index{grace}}, plot terminal, latex, beamer textmate, djvu, preview and firefox in my daily life.
And this grace will be printed on the Index page showing the page number.
.
.
\printindex
\end{document}
Latex Shortcuts through terminal
command
#!/bin/sh
latex "$1".tex
dvips "$1".dvi
ps2pdf "$1".ps
How to put bibliography at the end of each chapter [YouTube Link]
prosper template (made by/for me)
click here
Youtube Biblatex ChapterBIB & PSTricks
Chapterbib Link here
PSTRICKS
Minimum Working Example for Equation with a Figure..
MWE = Minimum Working Example
\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{subfigure}
\newcommand{\op}[2]{\vcenter{\hbox{\includegraphics[height=#2]{#1}}}}
\begin{document}
\begin{equation}
O_p=\op{draw1.pdf}{36pt}=U_1 V_2 U_3^\dagger V_4^\dagger,
\end{equation}
%% keep the draw1.pdf file (which is a figure) in the same folder at the .tex file.
\end{document}