TeXiFy-IDEA
TeXiFy-IDEA copied to clipboard
Image ending in `.JPG` missing false positive
Type of JetBrains IDE (IntelliJ, PyCharm, etc.) and version
Compiled from 04d73ad09d8cd9c73c04ba19111d2c35859bc345
Operating System
The usual
What I did (steps to reproduce)
Project structure like so:
|
| - main.tex
| - picture.JPG
main.tex
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
\begin{figure}[H]
\centering
\includegraphics[width=\textwidth]{picture}
\end{figure}
\end{document}
When adding .JPG
to the \includegraphics
, I then get a warning saying I dont need the extension.
changing the ext to .jpg
is also a viable fix, but I shouldnt need to since it all compiles.
Also just realized that Intellisense does not suggest picture.JPG
but will suggest picture.jpg
.
Intellisense is a Visual Studio feature, I believe
Should I call it autofill then?
It's called code completion or auto completion