I am looking to use find and replace to change my graphic file locations without the need to do each one individually.
So I currently have several
\includegraphics[scale=0.5]{fig1}
\includegraphics[scale=0.85]{fig2}
etc.
Is there a way at which I can find and replace to something like this
*find(\includegraphics[*]{/Chapter/Images/* *
where * is this thing I am trying to ignore and not change. This would result in
\includegraphics[scale=0.5]{/Chapter/Images/fig1}
\includegraphics[scale=0.85]{/Chapter/Images/fig2}
If anyone knows of a way I'd greatly appreciate it!
\includegraphics[scale=0.5]{fig1}you can use\graphicspath{{Chapter/Images/}}so tex looks in the subdirectory. – David Carlisle Jul 17 '19 at 14:54