Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
-
Athene_47
- Posts: 15
- Joined: Fri Apr 06, 2018 5:02 pm
Post
by Athene_47 »
Hi guys !
I am using metroplis theme for my presentation and I have set sections and sidebar.
How can I remove the sidebar in the index frame ?
Thanks
Code: Select all
\section {Literature review}
\begin{frame}
\end{frame]
\section{Empirical Evidence}
\begin{frame}
\end{frame]
\section{Future research lines}
\begin{frame}
\end{frame]
\section{Conclusions}
\begin{frame}
\end{frame]
-
Attachments
-

- index.JPG (32.29 KiB) Viewed 68000 times
-
Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz »
Athene_47 wrote:I have set sections and sidebar.
How can I remove the sidebar in the index frame ?
It depends on how you set it. It's not in metropolis by default. I used the metropolis many times without sidebar.
Perhaps post some code, since the code above just has trivial pieces and nothing yet that can be tested.
Stefan
LaTeX.org admin
-
Athene_47
- Posts: 15
- Joined: Fri Apr 06, 2018 5:02 pm
Post
by Athene_47 »
here the full code
Code: Select all
\documentclass[10pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usetheme{metropolis}
\useoutertheme[left]{sidebar}
\usepackage{appendixnumberbeamer}
\usepackage{booktabs}
\usepackage[scale=2]{ccicons}
\usepackage{pgfplots}
\usepackage{xspace}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\begin{document}
\title{Do ICTs matter for Italy?}
\vspace{3.5cm}
\date{\today}
\author{Daniela Cialfi \hspace{0.5pt} Emiliano Colantonio}
\vspace{3.5cm}
%\subject{Name of the Conference}
%\institute{Department of Philosophical, Pedagogical and Economic-Quantitative Sciences
%\\ University of Studies G.D'Annunzio
%\\ Pescara,Italy} %\\[3em]{International Conference}}
\titlegraphic{\hfill\includegraphics[height=1.5cm]{logoprova.png}}
\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{}
\begin{frame}[plain]
\maketitle
\end{frame}
\begin{frame}
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
\section{Literature review}
\setbeamertemplate{frametitle}[default][center]
\begin{frame}
\frametitle[alignment=center]{Prove}
contenuto
\end{frame}
\section{Empirical evidence}
\subsection{Selection and creation of the database}
\begin{frame}{Selection and creation of the database}
contenuto...
\end{frame}
\subsection{Patterns and dynamics of Italian regions}
\begin{frame}{Patterns and dynamics of Italian regions
\\from 2006 to 2013}
contenuto
\end{frame}
\subsection{Preliminary conclusions}
\begin{frame}{Preliminary conclusions}
contenuto
\end{frame}
\section{Future research lines}
\begin{frame}
contenuto
\end{frame}
\section{Conclusions}
\begin{frame}{Summary}
contenuto
\end{frame}
\section{References}
\begin{frame}
contenuto
\end{frame}
\end{document}
-
Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Post
by Stefan Kottwitz »
Hi,
so it's the "sidebar" other theme. Similar to the title page, you can suppress the sidebar on the index page as well, by adding the
plain
option:
Code: Select all
\begin{frame}[plain]
\setbeamertemplate{section in toc}[sections numbered]
\tableofcontents[hideallsubsections]
\end{frame}
Stefan
LaTeX.org admin