![tema: Szeged - cómo editar el encabezado](https://rvso.com/image/420739/tema%3A%20Szeged%20-%20c%C3%B3mo%20editar%20el%20encabezado.png)
Estoy usando RMarkdown Beamer y configuro el tema: Szeged en el encabezado YAML según:
---
title: title
author: name
date: date
output:
beamer_presentation:
theme: Szeged
slide_level: 2
includes:
in_header: header.tex
linkcolor: blue
---
header.tex
% remove title slides at beginning of sections
\AtBeginSection{}
% add page counter to the footer
\setbeamertemplate{footline}[frame number]
Pero me gustaría eliminar la segunda sección (entre la 2ª y 3ª línea) ya que no tengo nada ahí:
¿Cómo puedo hacerlo?
¿Es posible cambiar el color de estas líneas también?
Respuesta1
Agregué lo siguiente al archivo TeX:
% remove 2nd section from header
\makeatletter
\beamer@theme@subsectionfalse
\makeatother
% change colour of lines
\definecolor{mycolor}{RGB}{7,75,164}
\setbeamercolor{separation line}{bg=mycolor}