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
Presentations and Posters ⇒ Berkeley theme
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Berkeley theme
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:
Please always post real code as code in text, as I did. From a screenshot I cannot copy and test the code.
Stefan
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}
Stefan
LaTeX.org admin
Berkeley theme
Thanks Stefan for the advise .. it worksStefan 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:
Please always post real code as code in text, as I did. From a screenshot I cannot copy and test the code.Code: Select all
\PassOptionsToPackage{right}{beamerouterthemesidebar} \documentclass{beamer} \usetheme{Berkeley} \begin{document} \frame{test} \end{document}
Stefan

I have other question. If i want to use the Berlin theme insted of Berkely, is it possible to use the sidebar option ?
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Berkeley theme
Try it with Berlin. The sidebar is shown:
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
Code: Select all
\documentclass{beamer}
\usetheme{Berlin}
\useoutertheme[right]{sidebar}
\begin{document}
\frame{test}
\end{document}
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
Berkeley theme
Thanks for the adviseStefan Kottwitz wrote:Try it with Berlin. The sidebar is shown:
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.Code: Select all
\documentclass{beamer} \usetheme{Berlin} \useoutertheme[right]{sidebar} \begin{document} \frame{test} \end{document}
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


Berkeley theme
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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Berkeley theme
Hi Jay,
welcome to the forum!
You could use the author field to add also the supervisor. For example:
Or, to have just your name in the shorter version of that field, such as in the sidebar:
Stefan
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