I've been reading the tikz manual, and I was able to generate this MWE:
\documentclass[xcolor=dvipsnames]{beamer}
\usepackage{tikz}
\usetikzlibrary{calc, intersections,through,backgrounds,positioning}
\usepackage{pgfpages,ifthen}
\usepackage{blindtext}
\usepackage{multicol}
\usepackage{amsmath,amssymb,amsthm,mathrsfs,bbm,bm}
\usepackage{graphicx,subcaption,float,enumerate}
\usetheme[progressbar=frametitle]{metropolis}
\setbeamertemplate{frame numbering}[none]
\metroset{block=fill}
\setbeamercovered{transparent=15}
\title{Test Presentation}
\subtitle{a quick one}
\date{}
\author{}
\institute{}
\begin{document}
\maketitle
\begin{frame}
\begin{tikzpicture}[remember picture,overlay]
\draw[very thick,red] (current page.west) rectangle (current
page.south) ;
\draw[very thick,blue] (current page.north west) rectangle (current
page.center);
\end{tikzpicture}
\end{frame}
\begin{frame}{A frame title}
\begin{tikzpicture}[remember picture,overlay]
\draw[very thick,red] (current page.west) rectangle (current
page.south) ;
\draw[very thick,blue] (current page.north west) rectangle (current
page.center);
\end{tikzpicture}
\end{frame}
\end{document}
I'd like some help with the following:
- How can I name the blue and red nodes, so that I can now anchor things to them later on?
- How can I anchor these nodes to the bottom of the header? I know I need to do some calculations, and I am reading section 13.5 of the Tikz manual to figure it out. What I need to do is anchor to something like
(current page.west - headerwidth), etc. - I would like to generate a few frames with "sample slide layouts", things like two vertical panels on the left and one long one the right, etc. Right now, I want to do this manually, and just keep a
sample_slides.texfile on my computer with the code for all of these layouts that I can then just anchor new content to. Does this kind of thing make sense?
Note: I've also tagged beamer because I am sp[ecifically asking about a beamer slide header

graphicxandenumerate, beamer loads them for you. Andfloatmakes little sense in a documentclass that does not have floats. – samcarter_is_at_topanswers.xyz Apr 24 '18 at 15:57\node[draw,blue,fit=(current page.north west) (current page.center)] (bluenode){};. You'd need to load the fit library for that. – Apr 24 '18 at 16:17