[Tex/LaTex] documentclass Beamer graphicspath subfolder

beamergraphics

I want to use a subfolder for my graphics.
Folder structure:
script,
graphic,
Chapter1

\documentclass{beamer}
\usepackage{graphicx}    
\graphicspath{{graphic/Chapter1}}

Latex wont find the images in the folder Chapter1

It works without subfolder

\documentclass{beamer}
\usepackage{graphicx}    
\graphicspath{{graphic/}}

Any ideas?

Best Answer

You forgot a trailing / at the end of the first version, try:

\graphicspath{{graphic/Chapter1/}}