I wanna print the following link (https://commons.wikimedia.org/wiki/File:Eidgenössische_Abstimmung_über_die_Verminderung_von_Treibhausgasemissionen_2021.svg) in a latex beamer presentation.
Here is my example that leaves out the ö (using another template I got something else than the ö):
\RequirePackage[hyphens]{url}
\documentclass[aspectratio=169,10pt]{beamer}
\PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
\title{Example Title}
\author{Example Author}
\institute{Example Inst}
\date{\today}
\begin{document}
\begin{frame}[fragile]{Example:}
\url{https://commons.wikimedia.org/wiki/File:Eidgenössische_Abstimmung_über_die_Verminderung_von_Treibhausgasemissionen_2021.svg}
\end{frame}
\end{document}

\url{https://commons.wikimedia.org/wiki/File:Eidgen%C3%B6ssische_Abstimmung_%C3%BCber_die_Verminderung_von_Treibhausgasemissionen_2021.svg}– samcarter_is_at_topanswers.xyz Nov 28 '22 at 11:37