In this example, slightly modified, the positionning of 'N' has been corrected with textheight to not be masked by the header:
\documentclass[beamer]{beamerswitch}
\usetheme{metropolis}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{frame}\frametitle{My title}
\thispagestyle{empty}
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north] at ($(current page.north)+(0,-0.1\textheight)$) {N};
\node[anchor=west] at (current page.west) {W};
\node[anchor=east] at (current page.east) {E};
\node[anchor=south] at (current page.south) {S};
\node at (current page.center) {C};
\end{tikzpicture}
\end{frame}
\end{document}
- Is there other metrics than
textheightto manage the different areas of the frame (header, footer, between) for tikz drawing? - Which one in particular permits to work between from 0.0 to 1.0?
