vote up 0 vote down star

How can you have the wildcard character, for example in the following code?

\graphicspath{{1/*/pictures/}}
flag

Voted to move on superuser. – Bastien Léonard Jul 30 at 23:33
4  
No on SuperUser. I end up writing versions of this a lot, but LaTeX is a Turing complete language. The problem here is to get find a syntax for desired output without endlessly coping. If Will Robertson bothers, he can probably show us how to write the loop. If nyou solve it with a loop, it is programming. – dmckee Jul 31 at 1:57
@dmckee: I'm not arguing that this isn't programming related, but it will attract a broader range of people on SU. LaTeX users are not necessarily programmers. – Bastien Léonard Jul 31 at 15:39
1  
@Bastien: This is a question whose intended audience — those it expects to attract answers from — are LaTeX users who are programmers. This is no different from questions about specific programming languages (say JavaScript) – ShreevatsaR Aug 4 at 5:38

1 Answer

vote up 3 vote down check

You can't use wildcards with \graphicspath. You'll have to be explicit:

\graphicspath{{1/pictures/}{2/pictures/}{3/pictures/}{...etc...}}

I found the LaTeX Wikibook a few months ago. It's a good reference for getting started.

link|flag
@Sean: Thank you Sean! - I knew that the problem was somewhere as I asked this question. - My PATHs are long. This made me to use the following syntax `\graphicspath{{very-long-path1}}; \graphicspath{{very-long-path2}}; in separate lines. - Your example is the key to solve the problem. – Masi Jul 30 at 23:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.