-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asy files produced from a tex file should be marked as input and output files by the -recorder option #173
Comments
Is this an Asymptote issue or a latexmk issue? Where and how exactly do you want to "mark" asy files as Output files? |
This is not related to
For instance, the |
I think there is a misunderstanding here: you need to run [pdf]latex twice: once to produce the .asy file and then a second time,
|
I will try to make my point more precise. When running
I would expect I hope my explanation is clearer this time. |
The whole point of using latexmk is that you do not need to run asy by hand; it does that automatically. I already spent much time looking into minted.sty and manually adding OUTPUT foo-1.pdf to foo.fls only to conclude that this does not (and cannot) reduce the number of latex passes from two to one, as I already explained. Obviously there is a misunderstanding here. Make sure you have the .latexmkrc file in the current working directory. Don't forget the dot in front of the file name. |
Thanks for your answer but it seems I missed my point. First, I would like to emphasize that I am not discussing how to use I just want to discuss the content of the
As I have already said, the file My whole point is to improve dependency detection when using |
It would really help if you can be explicit about what exactly you want to change. For security reasons, I don't recommend using -shell-escape. |
Yes, I would like to see |
Here's a hack to asy-latex.dtx that puts the dependency information you want in a file foo.fls_asy; you'll have to read that file as well as foo.fls: |
Thanks for your efforts but I do not think it really helps because
|
#183 may be related with this. I would request users here to please have a look at it. |
This is related to James-Yu/LaTeX-Workshop#2237 (I am a maintainer of the extesion)
Consider a toy
foo.tex
filealong with the following
latexmkrc
fileThe
foo.fls
files produced bylatexmk
(actually by the-recorder
option of[pdf]latex
) listsfoo-1.asy
as anOUTPUT
file andfoo-1.pdf
as anINPUT
file. I thinkfoo-1.pdf
should be marked as anOUTPUT
file too.The text was updated successfully, but these errors were encountered: