The LaTeX compiler is able to determine the file without adding the filetype e.g.,
\includegraphics[width=0.8\textwidth]{images/frontend/verbose}
which is similar to
\includegraphics[width=0.8\textwidth]{images/frontend/verbose.pdf}
Now the question is:
- is it considered good practice to add the filetype so it's verbose?
- Should I omit it, since the compiler is able to detect it automatically, which will make it kind of redundant? This will also have the advantage if the type changes from e.g.,
pdftopngno changes in the include will be needed. - Is it a question of personal preference as to what is preferred?
Thank for the answers in advance :)
I know this may not be such a relevant topic, but I've been thinking about it for the last few days and couldn't find an answer somewhere.