summary refs log tree commit diff
path: root/pkgs/misc/tex
Commit message (Collapse)AuthorAge
* * \input{foo} should look for foo.tex by default.Eelco Dolstra2008-01-16
| | | | svn path=/nixpkgs/trunk/; revision=10176
* fix provided by Tobias Hammerschmidt to make it compile againMarc Weber2007-12-05
| | | | svn path=/nixpkgs/trunk/; revision=9862
* * Added dblatex, a DocBook -> PS/PDF/DVI converter.Eelco Dolstra2007-11-01
| | | | svn path=/nixpkgs/trunk/; revision=9569
* Added auctex from mailing listWouter den Breejen2007-09-20
| | | | svn path=/nixpkgs/trunk/; revision=9345
* * Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra2007-08-27
| | | | | | find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
* * added propagated-user-env-packages for lhs2tex and polytableAndres Löh2007-08-24
| | | | svn path=/nixpkgs/trunk/; revision=9195
* * Reverted r6713, r6711, r4623, r3660, r2237. There rewrote fetchurlEelco Dolstra2007-08-24
| | | | | | | | | URLs to http://nix.cs.uu.nl/dist/tarballs. With content-addressable mirror support (r9190, NIXPKGS-70) this is no longer necessary: fetchurl will try to download from that location automatically. So we can keep the original URLs. svn path=/nixpkgs/trunk/; revision=9192
* * Work around a bad Perl interpreter path.Eelco Dolstra2007-04-09
| | | | svn path=/nixpkgs/trunk/; revision=8553
* * Print a warning if files cannot be found.Eelco Dolstra2007-03-29
| | | | svn path=/nixpkgs/trunk/; revision=8476
* * A function `simpleTeXToPNG' that typesets a piece of LaTeX codeEelco Dolstra2007-03-12
| | | | | | | | | | | (e.g., a file containing something like `$x^2 + y^2 = z^2$') and converts it to a PNG image with no unnecessary surrounding whitespace. Useful when you want to include TeX stuff in webpages / other documents. This currently calls /usr/bin/convert, so we should add ImageMagick. svn path=/nixpkgs/trunk/; revision=8269
* * runLaTeX: support generation of Postscript.Eelco Dolstra2007-03-12
| | | | | | | | * findLaTeXIncludes: handle the case where the input is already in the Nix store, and allow a different prefix to be used for searching included files. svn path=/nixpkgs/trunk/; revision=8268
* * Don't propagate the teTeX dependency.Eelco Dolstra2007-03-12
| | | | svn path=/nixpkgs/trunk/; revision=8262
* * Added pgf/tikz.Eelco Dolstra2007-03-10
| | | | | | | * runLaTeX: allow additional TeX packages to be specified. * teTeX setup hook: TEXMFNIX doesn't seem to work, use TEXINPUTS. svn path=/nixpkgs/trunk/; revision=8261
* * Remove references to dontMakeInstall.Eelco Dolstra2006-12-27
| | | | svn path=/nixpkgs/trunk/; revision=7500
* * Support \pgfimage.Eelco Dolstra2006-11-22
| | | | svn path=/nixpkgs/trunk/; revision=7087
* * `drv + /path' is deprecated, so don't do that anymore.Eelco Dolstra2006-10-17
| | | | svn path=/nixpkgs/trunk/; revision=6754
* * Added a bunch of descriptions.Eelco Dolstra2006-10-11
| | | | svn path=/nixpkgs/trunk/; revision=6705
* * Slightly evil: compress the log file to prevent TeX output fromEelco Dolstra2006-09-19
| | | | | | retaining a dependency on teTeX. svn path=/nixpkgs/trunk/; revision=6559
* * Don't use the subpath operator (~) anymore, it's subsumed by normalEelco Dolstra2006-08-09
| | | | | | concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
* * Follow \bibliographystyle to find .bst files.Eelco Dolstra2006-07-05
| | | | svn path=/nixpkgs/trunk/; revision=5590
* * Follow \usepackage.Eelco Dolstra2006-06-14
| | | | svn path=/nixpkgs/trunk/; revision=5436
* dot2psEelco Visser2006-04-11
| | | | svn path=/nixpkgs/trunk/; revision=5152
* * Prevent unnecessary LaTeX runs.Eelco Dolstra2006-03-23
| | | | svn path=/nixpkgs/trunk/; revision=5082
* * Copy lots of files to nix.cs.uu.nl.Eelco Dolstra2006-01-30
| | | | svn path=/nixpkgs/trunk/; revision=4623
* * modified tetex to support extra .sty's from other packagesAndres Löh2006-01-27
| | | | | | | * added lazylist and polytable (both tetex packages) * added lhs2tex ebuild, depending on the two above svn path=/nixpkgs/trunk/; revision=4609
* * "." -> "source".Eelco Dolstra2005-12-05
| | | | svn path=/nixpkgs/trunk/; revision=4335
* * Enable option to compress multiple spaces in the index.Eelco Dolstra2005-11-28
| | | | svn path=/nixpkgs/trunk/; revision=4314
* * Also copy the generated bibliography (*.bbl) to $out.Eelco Dolstra2005-10-02
| | | | svn path=/nixpkgs/trunk/; revision=3992
* * Support \pgfdeclareimage.Eelco Dolstra2005-09-02
| | | | svn path=/nixpkgs/trunk/; revision=3771
* * Support references to parent directories, e.g., \input{../../macros.ltx}.Eelco Dolstra2005-08-30
| | | | svn path=/nixpkgs/trunk/; revision=3748
* * Print the page count.Eelco Dolstra2005-08-16
| | | | svn path=/nixpkgs/trunk/; revision=3592
* * Suppress most of that crap TeX spews over your screen. Print aEelco Dolstra2005-08-16
| | | | | | | | summary of the under/overfull boxes and undefined references/citations. The full log output is still written to $out/log. svn path=/nixpkgs/trunk/; revision=3590
* * Don't use `seq'.Eelco Dolstra2005-07-01
| | | | svn path=/nixpkgs/trunk/; revision=3281
* * Support PNG files.Eelco Dolstra2005-06-27
| | | | svn path=/nixpkgs/trunk/; revision=3258
* * A function for dot animation.Eelco Dolstra2005-06-27
| | | | svn path=/nixpkgs/trunk/; revision=3255
* * Process \includegraphics{filename}.Eelco Dolstra2005-06-21
| | | | svn path=/nixpkgs/trunk/; revision=3237
* * Add a dot2pdf function.Eelco Dolstra2005-06-20
| | | | svn path=/nixpkgs/trunk/; revision=3232
* * Scan for BibTeX files included by \bibliography.Eelco Dolstra2005-06-20
| | | | | | | * Automatically run BibTeX when necessary (i.e., when there are \citations in the aux file). svn path=/nixpkgs/trunk/; revision=3222
* * Handle subdirectories (e.g., \input{foo/bar.tex}). We don't yetEelco Dolstra2005-06-20
| | | | | | | | | | | | handle relative paths to parent directories (../foo/bar.tex). This can be handled as was done in https://svn.cs.uu.nl:12443/repos/trace/nix/trunk/make/lib/compile-c.sh. The `copy-includes.pl' script is generic (not LaTeX specific), so it should eventually replace most of compile-c.sh and any future builders that have to set up a tree of symlinks to simulate the original directory hierarchy of the sources. svn path=/nixpkgs/trunk/; revision=3220
* * Oops.Eelco Dolstra2005-06-20
| | | | svn path=/nixpkgs/trunk/; revision=3218
* * Find LaTeX document dependencies automatically by scanning forEelco Dolstra2005-06-20
| | | | | | | | | \input and \documentclass. Copied from Maak (https://svn.cs.uu.nl:12443/repos/pkgs/texwrappers/trunk/chase-latex-inputs.pl). TODO: support \bibliography, \usepackage, \includegraphics, etc. svn path=/nixpkgs/trunk/; revision=3217
* * Macros for building LaTeX documents using Nix.Eelco Dolstra2005-06-20
| | | | svn path=/nixpkgs/trunk/; revision=3216
* * Added teTeX 3.0. Sure, it may take up 267M of disk space, but itEelco Dolstra2005-04-28
contains everything you could possibly need, including beamer ;-) This teTeX has been built without X11 support, meaning that xdvi is not included. svn path=/nixpkgs/trunk/; revision=2931