I am struggling with following:
I work on a larger collection in LaTeX, which includes around 30 different papers. I am used to work on macOS (Texpad - currently using live compiler), hence compiling via MacTeX. However, it does not produce files such as .aux, .bbl, .log, .out etc. and most importantly, supporting file generated by the template I have to use to set page numbering and order for each article.
After correction I have to recompile each article under Windows (using TeXStudio) to obtain necessary files. Is there a way to achieve this in macOS (I use Mac for all of my other work-related things and it becomes very unpleasant to need both systems).
.auxfile, etc. Are you using a nasty IDE which automatically deletes them? – Ian Thompson Nov 16 '20 at 15:30.auxfiles in a folder you can't see. – Alan Munn Nov 16 '20 at 15:31Options > Configure TeX studio > Commands, it should be similar. – Heliton Martins Nov 16 '20 at 15:36.auxfiles by default, but you can change this in the preferences. – Alan Munn Nov 16 '20 at 15:38There is an option to "hide intermediate files", which should keeps the working directory uncluttered with only .tex and .pdf (description), but I have it unchecked.
– Josh E. Nov 16 '20 at 15:38ls -la(I think it's the same) in the folder you're working. Maybe it reveals some hidden folder that contains your aux files. – Heliton Martins Nov 16 '20 at 15:40./.texpadtmp. – Heliton Martins Nov 16 '20 at 15:42.texpadtmpdirectory is sufficient to hide the files independent of the preference setting. If that's the case, try deleting all the aux files and recompiling and see if they appear, and failing that, delete the.texpadtmpdirectory entirely and then recompile. – Alan Munn Nov 16 '20 at 15:45.texpadtmpdirectory. It's not under root user's files or in my LaTeX directory or in the library. I have once again looked at possibilities of Texpad, but there is no setting concerning these files. I will ask the Texpad guys themselves, I guess and see. I just hope that there is an option. – Josh E. Nov 16 '20 at 19:14.are hidden by default. The easiest way to see them is using the command line although there may be a Finder preference to show them. Open the terminal app and navigate to the folder where your ..texsource is, e.g.cd ~/Documents/myfolderif your file is inmyfolderwithinDocuments. Then typels -ato list all the files in the folder. If you see.texpadtmpyou can the typerm -rf .texpadtmpto remove it and its contents. – Alan Munn Nov 16 '20 at 21:20ls -ashowed only.tex,.pdf,.bib, and template files (.cls,.bst), .DS_Store (macOS files), and Figures as I always put figures for each article separately. There was no trace of auxiliary or similar files. By the way I did not mention that if I would recompile the.texin Win OS, Texpad won't delete them and even work with the template properly. – Josh E. Nov 17 '20 at 06:29