Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
Write a Makefile which you then can execute from within TM with CMD-B
el
— Sent from Dr Lisse’s iPad Mini 5 On 27 Jan 2020, 00:18 +0200, Alain Matthes alain.matthes@mac.com, wrote:
Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
TextMate mailing list TextMate@lists.macromates.com https://lists.macromates.com/listinfo/textmate
Hello
It’s a solution but I can do this from the terminal. More interesting it's how adds a new command ?
Thanks,
Regards,
Alain
Le 26 janv. 2020 à 23:48, el@lisse.na a écrit :
Write a Makefile which you then can execute from within TM with CMD-B
el
— Sent from Dr Lisse’s iPad Mini 5 On 27 Jan 2020, 00:18 +0200, Alain Matthes alain.matthes@mac.com, wrote:
Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
TextMate mailing list TextMate@lists.macromates.com https://lists.macromates.com/listinfo/textmate
TextMate mailing list TextMate@lists.macromates.com https://lists.macromates.com/listinfo/textmate
On Jan 26, 2020, at 14:17, Alain Matthes alain.matthes@mac.com wrote:
Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
Not sure if the following procedure is helpful but this is how I manage my own multi-file tex files in my projects. I write a “file_main.tex” where I input the various files and a .tm_properties file for each project with the following lines:
windowTitle = "$TM_DISPLAYNAME - ${CWD/^.*///}" TM_LATEX_MASTER = "$CWD/file_main.tex" [ attr.untitled ] fileType = “text.tex.latex”
--gildas
On Jan 26, 2020, at 20:12, Gildas Hamel gweltaz@ucsc.edu wrote:
On Jan 26, 2020, at 14:17, Alain Matthes alain.matthes@mac.com wrote:
Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
Not sure if the following procedure is helpful but this is how I manage my own multi-file tex files in my projects. I write a “file_main.tex” where I input the various files and a .tm_properties file for each project with the following lines:
windowTitle = "$TM_DISPLAYNAME - ${CWD/^.*///}" TM_LATEX_MASTER = "$CWD/file_main.tex" [ attr.untitled ] fileType = “text.tex.latex”
--gildas
I forgot to add that I don’t use %!TEX root = path/to/main.tex at the top of my various chapters.
Thanks but it’s not the problem. I work like you on my documentation with a main file and a dozen sub-files .tex. With a script I got a hundred individual files. I want to compile them all with one command. In the terminal I can with latexmk, I would like to do it from TM Regards, Alain
Le 27 janv. 2020 à 06:06, Gildas Hamel gweltaz@ucsc.edu a écrit :
On Jan 26, 2020, at 20:12, Gildas Hamel <gweltaz@ucsc.edu mailto:gweltaz@ucsc.edu> wrote:
On Jan 26, 2020, at 14:17, Alain Matthes alain.matthes@mac.com wrote:
Hello, I have a project and inside I have a folder with several files .tex. I would like to compile all the files at the same time how I can proceed ? I think with a ruby script but I’m not an expert.
Regards, Alain
Not sure if the following procedure is helpful but this is how I manage my own multi-file tex files in my projects. I write a “file_main.tex” where I input the various files and a .tm_properties file for each project with the following lines:
windowTitle = "$TM_DISPLAYNAME - ${CWD/^.*///}" TM_LATEX_MASTER = "$CWD/file_main.tex" [ attr.untitled ] fileType = “text.tex.latex”
--gildas
I forgot to add that I don’t use %!TEX root = path/to/main.tex at the top of my various chapters.
TextMate mailing list TextMate@lists.macromates.com mailto:TextMate@lists.macromates.com https://lists.macromates.com/listinfo/textmate https://lists.macromates.com/listinfo/textmate
Open a TeX file, click on the Seettings wheel, the Preferences and see if latexmk is checked.
el
On 2020-01-28 07:46 , Alain Matthes wrote:
Thanks but it’s not the problem. I work like you on my documentation with a main file and a dozen sub-files .tex. With a script I got a hundred individual files. I want to compile them all with one command. In the terminal I can with latexmk, I would like to do it from TM Regards, Alain
[...]