I am using Beamer's Metropolis theme which is freely obtained in Overleaf. The problem is that if I add the line
\addtobeamertemplate{background canvas}{\transfade[duration=1]}{}
to obtain effects in the presentation, in the PDF document there is a white line on the left side as you can see in this image
How I can avoid this?
I have used the following code, suggested by @samcarter
\documentclass{beamer}
\usetheme[background=dark]{metropolis}
\addtobeamertemplate{background canvas}{\transfade[duration=1]}{}
\begin{document}
\begin{frame} abc
\end{frame}
\end{document}
But the result is the same


\transfade[duration=1]in the background canvas? – samcarter_is_at_topanswers.xyz Feb 07 '18 at 20:54\usetheme[background=dark]{metropolis} \addtobeamertemplate{background canvas}{\transfade[duration=1]}{}
\begin{document}
\begin{frame} abc \end{frame}
\end{document}` works fine for me.
– samcarter_is_at_topanswers.xyz Feb 07 '18 at 21:06