faltfe / iodhbwm

LaTeX - Vorlage für Bachelor-, Studien- und Projektarbeiten an der DHBW
https://faltfe.github.io/iodhbwm/
LaTeX Project Public License v1.3c
17 stars 5 forks source link

graphicspath is not used for "institute logo" #54

Closed NelDav closed 3 years ago

NelDav commented 5 years ago

Since the last update, the institute logo doe not uses the \graphicspath. If you want to include an institue logo, the whole path has to be written to the \dhbwsetup.

You have to type:

\graphicspath{{./img/}}

\dhbwsetup{%
    institute logo      = ./img/logo;
}

instead of:

\graphicspath{{./img/}}

\dhbwsetup{%
    institute logo      = logo;
}
NelDav commented 5 years ago

It seams like that problem is not a porblem of the class. On my private PC the notation without ./img/ still works.

faltfe commented 5 years ago

At my working station running MiKTeX I can't reproduce this issue. What version of MiKTex or TeXlive are you running?

NelDav commented 5 years ago

I updated the class on my private pc and now the issue also appears on my private pc. I give you a little bit source code to explain the problem:

I have to do that, to define the logo manually

\graphicspath{{./img/}}

\dhbwsetup{%
    ...
    institute logo      = ./img/logo,
    ...
}

I think it would be better to do the following:

\graphicspath{{./img/}}

\dhbwsetup{%
    ...
    institute logo      = logo,
    ...
}