General ⇒ \newcommand and the TeXnicCenter file list
\newcommand and the TeXnicCenter file list
Is there any way to prevent it from picking up things that look like file names but appear only in \newcommand and embedded #digit?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: \newcommand and the TeXnicCenter file list
please provide some concrete, complete and compilable example of your intentions...
Re: \newcommand and the TeXnicCenter file list
\documentclass{article}
\usepackage{graphicx}
%
% Insert a single chart
% PSinsertChart{path,caption,label}
%
\newcommand{\PSinsertChart}[3]{
\begin{figure}[p]
\includegraphics[width=5.8in]{#1}
\vspace{-40pt}
\caption{#2}
\label{#3}
\end{figure}
}
\begin{document}
This is a test article.
\end{document}