Document Classes ⇒ Horizontal flush of subsection dots, Berlin theme
-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Horizontal flush of subsection dots, Berlin theme
Any suggestion?
Thank you in advance!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Horizontal flush of subsection dots, Berlin theme
can you please post some code that allows me to form and idea about your problem?
-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Re: Horizontal flush of subsection dots, Berlin theme
in the headline outer section I have 2 boxes one blue (where section are printed) and one light blue (where subsection are printed); now, one the blue box under the section title, if you filled code with subsection you have a circled dot for each one, right?
This dots are ordered vertically and I want them to be ordered horizontally.
Get it? I hope so; I can't provide you code 'cause I have no idea how to instruct Tex to do this. And the style with vertical dots is pre-defined in Berlin theme...
Thank you so much...
M
Horizontal flush of subsection dots, Berlin theme
you could use the compress option for the Berlin theme:
Code: Select all
\documentclass{beamer}
\usetheme[compress]{Berlin}
\begin{document}
\section{Sec. One}
\subsection{Subsec One One}
\begin{frame}
Just a test frame.
\end{frame}
\subsection{Subsec One Two}
\begin{frame}
Another test frame.
\end{frame}
\end{document}-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Re: Horizontal flush of subsection dots, Berlin theme
I know I have to use the beamercolorbox, but I don't know how... I'm just a beginner...
Thank you very much
M
Horizontal flush of subsection dots, Berlin theme
Do not worry. However, you can do some reading on your own. Here's the link to the beamer user guide.m.carrara3 wrote:Thank you so much, it works properly!!! I have one more question (I hope not to bother you so much...) How can I erase the bright blue bar in the headline? I just want the section bar.
I know I have to use the beamercolorbox, but I don't know how... I'm just a beginner...![]()
Thank you very much
M
And here's a possible solution to your problem (notice that I didn't used the Berlin theme, but rather I imitate it):
Code: Select all
\documentclass[compress]{beamer}
\mode<presentation>
\useoutertheme[footline=authorinstitutetitle,subsection=false]{miniframes}
\usecolortheme{whale}
\usecolortheme{orchid}
\useinnertheme{rectangles}
\setbeamerfont{block title}{size={}}
\begin{document}
\section{Sec. One}
\subsection{Subsec One One}
\begin{frame}
Just a test frame.
\end{frame}
\subsection{Subsec One Two}
\begin{frame}
Another test frame.
\end{frame}
\subsection{Subsec One Two}
\begin{frame}
Another test frame.
\end{frame}
\end{document}- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Horizontal flush of subsection dots, Berlin theme
using the Berlin theme directly this setting of an internal macro would work in the preamble:
Code: Select all
\makeatletter
\beamer@theme@subsectionfalse
\makeatother-
m.carrara3
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Re: Horizontal flush of subsection dots, Berlin theme
But... Where did you learn all these commands??? You're a genius!!!
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Horizontal flush of subsection dots, Berlin theme
Stefan