GeneralSlide like Title on front Page

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
pallav
Posts: 170
Joined: Wed Nov 12, 2008 5:53 pm

Slide like Title on front Page

Post by pallav »

How to include a frame with in the slides just like the title as in the front page. No upper, no lower, I need only one dark blue rounded box having white text in side.

I have given one example in the attachment, which should come in an intermediate pade, say at page 2. Please help me to solve the issue.

Code: Select all

\documentclass[
  smaller,
  professionalfonts,
  hyperref={
    colorlinks=true,
    breaklinks=true,
    bookmarks=true,
    linkcolor=blue,
    anchorcolor=blue,
    citecolor=blue,
    filecolor=red,
    urlcolor=red,
    pdfpagemode=FullScreen
  }
]{beamer}
\usepackage{beamerthemesplit}
\mode<presentation>{
  \usetheme{shadow}
  \def\colorize<#1>{\temporal<#1>{\color{red}}{\color{red}}{\color{black!50}}}
  \beamersetaveragebackground{yellow!10}
  \beamertemplateshadingbackground{blue!5}{yellow!10}
  \setbeamertemplate{frametitle}[from second]{}
  \setbeamercovered{dynamic}
}
\usepackage{graphicx}
\usepackage[authoryear, numbers, semicolon, sort&compress]{natbib}
\usepackage{ragged2e}
\usepackage{lmodern}


\title{Title of the Presentation}
\author[abc]{Author Name}
\institute{Institution}
\date{}

\justifying
\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\section{Introduction}
\begin{frame}
  \begin{block}{A B C D E F G}
  \end{block}
\end{frame}

\end{document}
Attachments
example.JPG
example.JPG (17.85 KiB) Viewed 2690 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Post Reply