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?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}