beamer add tag
Laurenso
This is my code
```
\documentclass[13pt]{beamer}
%\usetheme{Warsaw}
\usetheme{CambridgeUS}
%\useoutertheme{sidebar}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage{xurl}
\hypersetup{unicode,colorlinks=true,allcolors=blue,bookmarksnumbered}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{tikz}
\usepackage{esvect}
\setbeamertemplate{theorem}[ams style]
\usepackage{ragged2e}
\apptocmd{\frame}{}{\justifying}{} % Allow optional arguments after frame.

\setbeamertemplate{theorems}[numbered]

\makeatletter
\setbeamertemplate{subsection in toc}
{\leavevmode\leftskip=6.5ex%
	\llap{%
		\normalsize%
		\begin{pgfpicture}{-1ex}{-0.7ex}{1ex}{1ex}
			\pgftext{\beamer@usesphere{section number projected}{tocsphere}}
			\pgftext{%
				\usebeamerfont*{section number projected}%
				\usebeamercolor{section number projected}%
				\color{fg!90!bg}%
				\inserttocsectionnumber.\inserttocsubsectionnumber}
		\end{pgfpicture}%
		\kern1.25ex}%
	\inserttocsubsection\par
}
\makeatother

%\usepackage[font=Helv,timeinterval=60]{tdclock}

%\setbeamertemplate{headline}{\initclock\tiny{\tdyear-\tdmonth-\tdday\quad\tdhours:\tdminutes}}
\begin{document}

\begin{frame}{First frame}
\begin{itemize}
    \item something
    \item some other thing
  
\end{itemize}
\end{frame}
\end{document} 
```

I got

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

How can I get symbol of items?
Top Answer
samcarter
Don't use `enumitem` with beamer. They are not compatible.

You can avoid such problem by only loading the packages which you actually need. There are several other unnecessary packages in your preamble, e.g. `hyperref` and `graphicx`. Both of them are already loaded by beamer.

```
\documentclass{beamer}

\usetheme{CambridgeUS}
%\usepackage{enumitem}

\begin{document}

\begin{frame}
\frametitle{First frame}
\begin{itemize}
    \item something
    \item some other thing
\end{itemize}
\end{frame}
\end{document} 
```

![document-1.png](/image?hash=532198923736e02dae88ec0f9ea8508e8378ec9207bda6d23544f89f4048c5b1)

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.