Presentations and PostersBerkeley theme

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
Athene_47
Posts: 15
Joined: Fri Apr 06, 2018 5:02 pm

Berkeley theme

Post by Athene_47 »

HI guys

I use fo my presentation the Berkeley theme, but it seems to work as you can see from the image below but into the code TexStudio underlines a error in the following way

Option dash for package beamerouterthemesidebar. \useoutertheme[right]{sidebar}

Instead, using AnnArbor theme and putting the \useoutertheme[right]{sidebar} under \usetheme{AnnArbor} it works without errors
code
code
code.JPG (93.88 KiB) Viewed 29020 times
result.JPG
result.JPG (27.62 KiB) Viewed 29020 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Berkeley theme

Post by Stefan Kottwitz »

Hi,

the Berkeley theme already loads the sidebar with default options, that's why you get an option clash when you load it again with a different option.

Here is a quick fix - the first line:

Code: Select all

\PassOptionsToPackage{right}{beamerouterthemesidebar}
\documentclass{beamer}
\usetheme{Berkeley}
\begin{document}
\frame{test}
\end{document}
Please always post real code as code in text, as I did. From a screenshot I cannot copy and test the code.
Stefan
LaTeX.org admin
Athene_47
Posts: 15
Joined: Fri Apr 06, 2018 5:02 pm

Berkeley theme

Post by Athene_47 »

Stefan Kottwitz wrote:Hi,

the Berkeley theme already loads the sidebar with default options, that's why you get an option clash when you load it again with a different option.

Here is a quick fix - the first line:

Code: Select all

\PassOptionsToPackage{right}{beamerouterthemesidebar}
\documentclass{beamer}
\usetheme{Berkeley}
\begin{document}
\frame{test}
\end{document}
Please always post real code as code in text, as I did. From a screenshot I cannot copy and test the code.
Stefan
Thanks Stefan for the advise .. it works :)

I have other question. If i want to use the Berlin theme insted of Berkely, is it possible to use the sidebar option ?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Berkeley theme

Post by Stefan Kottwitz »

Try it with Berlin. The sidebar is shown:

Code: Select all

\documentclass{beamer}
\usetheme{Berlin}
\useoutertheme[right]{sidebar} 
\begin{document}
\frame{test}
\end{document}
But first really think about if you need foot lines, header, sidebar at all. They take space, they show redundant information, I doubt that the audience reads the such sidebar, header or footer all the time. It takes space away that you could use.

I prefer themes without fancy stuff that requires space. For example, when I have big images or screenshots or long code. Recently I used the metropolis beamer theme. All available space is for content.

Stefan
LaTeX.org admin
Athene_47
Posts: 15
Joined: Fri Apr 06, 2018 5:02 pm

Berkeley theme

Post by Athene_47 »

Stefan Kottwitz wrote:Try it with Berlin. The sidebar is shown:

Code: Select all

\documentclass{beamer}
\usetheme{Berlin}
\useoutertheme[right]{sidebar} 
\begin{document}
\frame{test}
\end{document}
But first really think about if you need foot lines, header, sidebar at all. They take space, they show redundant information, I doubt that the audience reads the such sidebar, header or footer all the time. It takes space away that you could use.

I prefer themes without fancy stuff that requires space. For example, when I have big images or screenshots or long code. Recently I used the metropolis beamer theme. All available space is for content.

Stefan
Thanks for the advise :D :D
Jay19
Posts: 1
Joined: Wed Oct 23, 2019 7:42 pm

Berkeley theme

Post by Jay19 »

Hi,
I m using Berkeley theme..
How do i insert additional information like supervisor name, graphics in the front page..
\setbeamertemplate{footline}[page number]
\title{lengthy}
\author{Jay}
\institute{college}
\date{}
I want to add my guide name after author..
also include my university logo..
How do i remove the title and my name from the side bar.. My title is lengthy
Can somebody help me out
Thanks and Regards
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Berkeley theme

Post by Stefan Kottwitz »

Hi Jay,

welcome to the forum!

You could use the author field to add also the supervisor. For example:

\author{Jay\\Supervisor: Eric}

Or, to have just your name in the shorter version of that field, such as in the sidebar:

\author[Jay]{Jay\\Supervisor: Eric}

Stefan
LaTeX.org admin
Post Reply