<div style="FONT-FAMILY: Arial; COLOR: #000000; FONT-SIZE: 12px"><div>Thanks for the reply, I will take note of your first comments for future questions.  You also gave me a direction to search for a solution to the problem, so thanks for that. <br /></div><div> </div><div> </div><div style="border-top:1px solid #bcbcbc;margin:5px 0px;"></div><span style="font-size:12;font-family:arial;color:#000000;">On 10/18/13, <span>Vladimir Lomov<lomov.vl@gmail.com></span> wrote:</span><div> </div><div style="font-size:12;font-family:arial;color:#000000;">Hello,<br />** Arocho, Jesus [2013-10-18 09:38:29 -0400]:<br /><br />> When using lualatex and asymptote I get the error message: Package<br />> pdftex.def Error: File '"xxx".pdf' not found.  This occurs in both<br />> Windows TeXnicCenter (MikTex) and in a Linux kubuntu install.  Both<br />> installs have up to date versions.  Pdflatex works fine on both<br />> installs.<br /><br />First, you don't provide information about version of asymptote, MikTeX,<br />and TeX Live (usually default TeX distribution on Linux).<br />Second, you don't provide minimal (un-)working example.<br />And, third, you use wrong mailing list.<br /><br />Checked below on TeX Live 2013 on Archlinux x86_64.<br /><br />1. Asymptote has ability to use different tex engines for typesetting,<br />   for example,<br />     asy -tex pdflatex fig1.asy<br />     asy -tex xelatex fig1.asy<br />   though this don't work:<br />     asy -tex lualatex fig1.asy<br />   Ask asymptote developers to provide support for lualatex/luatex.<br /><br />   fig1.asy:<br />   -------------------------- 8< --------------------------<br />   size(100);<br /><br />   draw((0,0)--(1,0)--(1,1));<br />   label(Label("$A$",align=SW),(0,0));<br />   dot((0,0));<br />   -------------------------- 8< --------------------------<br />2. Asymptote code can be embedded into LaTeX document, example<br /><br />   ex-fig1.ltx:<br />   -------------------------- 8< --------------------------<br />   \documentclass{minimal}<br /><br />   \usepackage{asymptote}<br /><br />   \begin{document}<br /><br />   \begin{center}<br />     \begin{asy}<br />       size(100);<br />       draw((0,0)--(0,1)--(1,1));<br />       label(Label("$B$",align=S),(0,1));<br />       dot((0,1));<br />     \end{asy}<br />   \end{center}<br /><br />   \end{document}<br />   -------------------------- 8< --------------------------<br /><br />   The code must be "tangled" (extracted) from the document, any LaTeX<br />   engine can be used:<br />     pdflatex ex-fig1.ltx<br />     xelatex ex-fig1.ltx<br />     lualatex ex-fig1.ltx<br />   Then the asymptote code, located in file 'ex-fig1-1.asy' has to be<br />   run by asy:<br />     asy ex-fig1-1.asy<br />   and after that the document must be processed by some LaTeX engine<br />     pdflatex ex-fig1.ltx<br />     xelatex ex-fig1.ltx<br />     lualatex ex-fig1.ltx<br />   It is here where lualatex fails miserably, in my case it prints on<br />   screen:<br />     ! Package pdftex.def Error: File `"ex-fig1-1".pdf' not found.<br />   (this is vital part of message), while for pdflatex and xelatex I see<br />   on screen (part of message), for pdflatex:<br />      <"ex-fig1-1".pdf, id=1, 100.375pt x 95.6132pt> <use "ex-fig1-1".pdf><br />      [1 <./ex-fig1-1.pdf<br />   for xelatex:<br />      <use  ""ex-fig1-1".pdf" ><br /><br />So the problem is on Asymptote side, it uses quotes to, hm, quote<br />filename. In part this is a problem with luatex (engine), because it<br />treats quotes differently (this is just a guess, according to message<br />from pdftex.def).<br /><br />Ask Asymptote developers to check how asymptote works with luatex or<br />provide a patch for them.<br /><br />---<br />WBR, Vladimir Lomov<br /><br />-- <br />Software entities are more complex for their size than perhaps any other human<br />construct because no two parts are alike.  If they are, we make the two<br />similar parts into a subroutine -- open or closed.  In this respect, software<br />systems differ profoundly from computers, buildings, or automobiles, where<br />repeated elements abound.<br />- Fred Brooks, Jr.<br /></div></div>