Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Thanks, —Alex
I'm appending a typical document (master file: root_genesis.tex; file: gen_11.tex; root_genesis.pdf; and the .bbl file). I use bibtex and occasionally makeindex. Hope this is helpful. -- Gildas
* Alex Ross (z-textmate@lasersox.net) wrote: |> Hi LaTeX users, |> |> I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help. |> |> I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported! |> |> Thanks, |> —Alex |> |> |> |> _______________________________________________ |> textmate mailing list |> textmate@lists.macromates.com |> http://lists.macromates.com/listinfo/textmate
============================== Gildas Hamel 331 Plateau Avenue Santa Cruz, CA 95060 831 459 2669 (office) 831 325 5863 (cell) http://humweb.ucsc.edu/gweltaz ==============================
I use bibtex, yes, and heavily rely on the dvi/postscript path.
Thanks, Kyle
Quoting Alex Ross z-textmate@lasersox.net:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Thanks, —Alex
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
Le 27 janv. 2010 à 02:14, Alex Ross a écrit :
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Engines : pdflatex, xelatex
I don't use bibtex but makeindex heavily I use 1/50 en mode dvi/postscript I need a tikz scope because I use heavily tikz and I make this because I moved to a pure pdf-based !!! I make my pitures but I need to work with pictures.
I need some more complexe engines like in TexShop for example : asymptote or metapost.
In the templates I think templates based on koma-script should be useful !
I try to give some examples in the next days
Best Regards and sorry for my bad english
Alain Matthes
Alain Matthes <alain.matthes@...> writes:
Le 27 janv. 2010 à 02:14, Alex Ross a écrit :
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to
replace the default command that
currently ships with TextMate. But I need some information. What process are
TextMate's LaTeX users
following for building their documents? I'm sure most of you are using
bibtex, but what about other things
like makeindex? Has everyone moved to a pure pdf-based process, or are some
of you still using
dvi/postscript? What are you using for pictures? Anything you can tell me
will help.
I would also *love* example documents along with the expected output. This
will aid in testing, and ensure
that your particular process will be supported!
Engines : pdflatex, xelatex
I don't use bibtex but makeindex heavily I use 1/50 en mode dvi/postscript I need a tikz scope because I use heavily tikz and I make this because I moved to a pure pdf-based !!! I make my pitures but I need to work with pictures.
I need some more complexe engines like in TexShop for example : asymptote or
metapost.
In the templates I think templates based on koma-script should be useful !
I try to give some examples in the next days
Best Regards and sorry for my bad english
Alain Matthes
textmate mailing list textmate@... http://lists.macromates.com/listinfo/textmate
So in the following below, I have found a script in Ruby which will compile a document in pdflatex, then in asymptote, then again in pdflatex, rendering the pdf output with the embedded asymptote generated files. This text is great for inserting into the latex bundle as a custom command, so that at one keystroke you can generate the desired output.
Tim C
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#!/usr/bin/env ruby # default values
# compile latex file at least one time sout = system("pdflatex '$TM_FILEPATH'")
# create asy files if sout sout = system("asy ${TM_FILENAME/%.tex/'*'.asy}") end
# Re-Run pdflatex if sout sout = system("pdflatex '$TM_FILEPATH'") end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Le 27 janv. 2010 à 02:14, Alex Ross a écrit :
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Hi
I put this question some days ago :
What is the best way to build this engine from TexShop ?
#!/bin/tcsh
set path= ($path /usr/texbin /usr/local/bin) set filename = "$1" set asyname = "${filename:r}.asy"
pdflatex -synctex=1 "$filename" asy -v "$asyname" pdflatex -synctex=1 "$filename"
I make a very simple script but I would like a skeleton to make this script
Best regards
Alain Matthes
On 27 jan 2010, at 02.14, Alex Ross wrote:
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents?
First of all thanks for putting so much effort into this. This is really appreciated, even though I do not think the old bundle was bad.
I'm sure most of you are using bibtex, but what about other things like makeindex?
Bibtex, makeindex for use with the nomencl package. The latter one being one of the steps where I see room for improvement with the old bundle, iirc I always had to do the makeindex for the nomenclature manually on the command line, Typeset and View didn't do it for me.
Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript?
Personally I am on a pure PDF workflow, however I am constantly interchanging documents with my colleagues and some of the same still are on dvi -> ps -> pdf workflow. This is done quite nicely by the Typeset and View of the old bundle, so I am using that for documents from my colleagues and your bundle's Typeset and View for my documents (because it does not have that annoying Skim bug.
What are you using for pictures? Anything you can tell me will help.
I am using graphix with the pdftex option to include my pictures, usually in pdf, jpg, tiff or png format. My colleagues are using \usepackage{epsfig,graphicx,graphics} to cover what is thrown at them, but usually it's just eps files for them.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
See separate mail.
Regards,
Carsten
On Jan 27, 2010, at 2:14 , Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Thanks, —Alex
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
Hello,
I also would like to thank you very much for all your efforts.
I am using latex mostly for writing scientific articles, thus I am heavily relying on bibtex, but not makeindex. I do typesetting using the pdflatex process with images sometimes in eps format. Anything that makes things convenient working with bibliographies (citing etc.) is thus very welcome.
I also like the feature on getting documentation on the packages that are used in the document, even if this is often slow.
-- Christof
I use bibtex heavily and use pure pdfTeX all the time. I use microtype so pdftex is essential for me. I am also move on to the LuaTeX. Most time I use PDF as my external picture format; they are often output of other scientific software.
On 27 Jan 2010, at 01:14, Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
Thanks, —Alex
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On Jan 27, 2010, at 2:14 AM, Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate.
Thanks for this.
But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
pdflatex, bibtex, seldom including pdf files (pictures mostly done using TiKz/PGF + Gnuplot)
I would also *love* example documents along with the expected output. This will aid in testing, and ensure that your particular process will be supported!
See attached files.
Cheers, S.
Hi Alex et al., On 27 Jan 2010, at 01:14, Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what
Thanks for putting in effort. Although currently TeXShop is my main (Xe)LaTeX editor, this might change ... My workflow usually involves xelatex and bibtex, every once in a while a texcount. For compilation, I use xelatexmk which is distributed with TeXShop IIRC (this intelligently only runs tasks that have to be done, when files have changed).
Thanks, Jonas
I am mainly using pdflatex and xelatex with bibtex and tikz. However, some colleagues still send me latex documents.
Alex, are you familiar with the bibtex implementation of emacs' auctex? I liked the search possibilities a lot...
Best, Daniel
On 27 Jan 2010, at 10:45, Jonas Zimmermann wrote:
Hi Alex et al., On 27 Jan 2010, at 01:14, Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what
Thanks for putting in effort. Although currently TeXShop is my main (Xe)LaTeX editor, this might change ... My workflow usually involves xelatex and bibtex, every once in a while a texcount. For compilation, I use xelatexmk which is distributed with TeXShop IIRC (this intelligently only runs tasks that have to be done, when files have changed).
Thanks, Jonas
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
On 27-01-2010, at 02:14, Alex Ross wrote:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
Almost completely a pdf-based process with bibtex and makeindex. I rely heavily on latexmk (in both TeXShop and TextMate). I use TeXShop most of the time: switching between LaTeX file and pdf preview is more comfortable. Editing in TextMate is nicer with better syntax highlighting.
Berend
* Berend Hasselman (bhh@xs4all.nl) wrote: |> |> On 27-01-2010, at 02:14, Alex Ross wrote: |> |> > Hi LaTeX users, |> > |> > I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help. |> |> |> Almost completely a pdf-based process with bibtex and makeindex. |> I rely heavily on latexmk (in both TeXShop and TextMate). |> I use TeXShop most of the time: switching between LaTeX file and pdf preview is more comfortable. |> Editing in TextMate is nicer with better syntax highlighting. |>
I second that, regarding use of pdf, latexmk, texshop and textmate, for exactly the same reasons. -- gildas
On 27/01/2010 02:14, Alex Ross wrote:
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
I've moved to a pure pdf workflow a long time ago.
There is one exception that I've used in my thesis, I use multibib. You can define multiple bibliographies, and each requires its own bibtex run, with the keyword as argument. This might be a bit too much of an exception though.
Jeroen.
Hi,
Freek and I have also tried to create a better Typeset&View command. Effectively a big refactoring of the original command.
It's not perfect, but it works at the moment, and a bit better than the original one ;)
http://github.com/jeroenh/pytexmate.tmbundle
Jeroen.
I use PDFLaTeX and XELaTeX for compiling my documents. Bibtex is a must. One thing that I need from time to time is makeindex for creating nomenclature (using nomencl) and glossaries. I usually do this in terminal. If this can be put as an option in the compile menu, it would be beneficial. BibLaTeX support is something that some people will need.
On Thu, Jan 28, 2010 at 5:55 AM, Jeroen van der Ham jeroen@dckd.nl wrote:
Hi,
Freek and I have also tried to create a better Typeset&View command. Effectively a big refactoring of the original command.
It's not perfect, but it works at the moment, and a bit better than the original one ;)
http://github.com/jeroenh/pytexmate.tmbundle
Jeroen.
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
Am 27.01.2010 um 02:14 schrieb Alex Ross:
Hi LaTeX users,
I'm working some more on the Typeset and View command, we are going to replace the default command that currently ships with TextMate. But I need some information. What process are TextMate's LaTeX users following for building their documents? I'm sure most of you are using bibtex, but what about other things like makeindex? Has everyone moved to a pure pdf-based process, or are some of you still using dvi/postscript? What are you using for pictures? Anything you can tell me will help.
Using pure pdf workflow with eps2pdf for graphics. Furthermore, using a lot makeindex for, of course the index and nomenclature.
Best, -- Christian
-We've really achieved the ideal of what I wanted Microsoft to become.- Bill Gates, June 2008