beamer add tag
Lorentz
Sometimes, I want to split a frame into two parts: the left side shows a problem statement, and the right side contains notes like two picture. 

![image.png](/image?hash=ca1f5ab1291b526eefa4585b8d15542628392be08d814e35c931fda725398df1)

![image.png](/image?hash=e37ebe70a055327486d308bbc3839b1385fa19c2d09a517df11f40dc772f3ac0)

I see [here](https://tex.stackexchange.com/questions/419864/notes-on-the-side-of-beamer-slides) 

but I can not make frames like two above sreenshots. 

I tried

```
\documentclass[14pt]{beamer}
\usetheme{CambridgeUS} 
\begin{document}
\begin{frame}
\titlepage
\end{frame}

\begin{frame}
\tableofcontents
\end{frame}
\begin{frame}[t]
	Write something
\end{frame}
\end{document}
 ```
 
 ![image.png](/image?hash=aaed7ae99912b6fa809527692af8ca6c0d378ce577215691327643b52fcfdf05)
Top Answer
samcarter
If you would like the line to be at the right edge of your frame, you could add them via the sidebar template:

```
\documentclass[14pt]{beamer}
\usetheme{CambridgeUS} 
\usepackage{tcolorbox}

\setbeamersize{sidebar width right=3cm}
\setbeamercolor{sidebar right}{bg=}

\makeatletter
\setbeamertemplate{sidebar right}{
  \small
  \begin{tcolorbox}[title={Notes},height=.95\textheight,width=3cm]
    \vfill%
    \beamer@tempcount=1%
    \loop%
    \hrulefill\vfill%
    \advance\beamer@tempcount by 1%
    \ifnum\beamer@tempcount<15%
    \repeat%
  \end{tcolorbox}
}
\makeatother

\begin{document}
\begin{frame}[t]
	Write something
\end{frame}
\end{document}
```
![document-1.png](/image?hash=66675096280987c33d73b98c55e24c6c03e18eee77810e4dc94f550ce3f7a828)

If you would like a separate note page:

```
\documentclass[14pt]{beamer}
\usetheme{CambridgeUS} 

\usepackage{tcolorbox}
\setbeameroption{show notes on second screen=right}

\makeatletter
\setbeamertemplate{note page}{%
  \begin{tcolorbox}[title=notes,height=\textheight]
    \vfill%
    \beamer@tempcount=1%
    \loop%
    \hrulefill\vfill%
    \advance\beamer@tempcount by 1%
    \ifnum\beamer@tempcount<16%
    \repeat%
  \end{tcolorbox}
}
\makeatother

\begin{document}
\begin{frame}[t]
	Write something
\end{frame}
\end{document}
```

![document-1.png](/image?hash=8b6a4b7e5c7b1040c875c266cb7eceb2aed284b36a60af48c7921e405366e4a9)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.