-
At the moment, biber (like bibtex) doesn't provide an equivalent of TeX's -output-directory option. I think a corresponding option would simplify processing in situations where the TeX output directory is different from the current directory. At the moment, if one wants to specify -output-directory in TeX, one has to set BIBINPUTS to the input directory and call biber from the output directory...
2009-10-12 07:22:08 UTC in biber
-
I think that SyncTeX should always output absolute paths. The current behavior is to write relative paths for the input files, which breaks inverse search e.g. in Skim when a different output directory is set via -output-directory. I could easily fix this by having my build script replace all input paths with absolute paths. It would be great if SyncTeX wrote absolute paths right from the...
2009-10-03 20:56:51 UTC in iTeXMac, an Integrated TeX Environment
-
I’ve posted a message to the TeX Live mailing list (tex-live@tug.org).
2009-09-30 08:25:16 UTC in Asymptote
-
To be more precisely, the problem lies within the filename parser in miniltx, which doesn't parse paths. Try using the original filename parser from LaTeX:
\def\filename@parse#1{%
\let\filename@area\@empty
\expandafter\filename@path#1/\\}
\def\filename@path#1/#2\\{%
\ifx\\#2\\%
\def\reserved@a{\filename@simple#1.\\}%
\else...
2009-09-21 12:46:53 UTC in Asymptote
-
Simply use the standard commands from the fontspec package. You can load packages with the usepackage function and add arbitrary code to the preamble using texpreamble. Here is a simple example:
usepackage("fontspec");
usepackage("xunicode");
usepackage("xltxtra");
texpreamble("\setmainfont{DejaVu Sans}");
label("lorem ipsum dolor sit...
2009-09-08 20:24:37 UTC in Asymptote
-
This question is related to LaTeX rather than Asymptote. LaTeX uses the \includegraphics command to include pictures. Please read at least the short introduction (lshort.pdf), it contains a whole section (4.1) about including EPS graphics.
2009-07-20 15:53:59 UTC in Asymptote
-
If your version of Asymptote was compiled without FFTW support, you have to compile it yourself.
2009-07-15 07:19:04 UTC in Asymptote
-
Nice example, thanks.
import lmfit;
import graph;
size(10cm, 7cm, IgnoreAspect);
real[] date = { 1790, 1800, 1810, 1820, 1830, 1840, 1850, 1860, 1870, 1880, 1890, 1900, 1910, 1920, 1930, 1940, 1950, 1960, 1970, 1980, 1990 };
real[] population = { 3.929, 5.308, 7.240, 9.638, 12.866, 17.069, 23.192, 31.443, 38.558, 50.156, 62.948, 75.996, 91.972, 105.711, 122.775, 131.669, 150.697...
2009-07-08 14:57:04 UTC in Asymptote
-
> Would it be difficult to post a reasonable example for the procedure of nonlinear fitting, for example some data fitted to logistic growth?
It would be quite easy, I simply don't have suitable data available for now. Do you have something?.
2009-07-08 12:30:09 UTC in Asymptote
-
> If you'd like to mention it in the manual as well, perhaps you could send me a patch to asymptote.texi.
I'm not a TeXinfo user and so I hesitate fiddling around with the source code. I've added a few comments to the lmfit.asy source file; perhaps that might help you.
http://homepages.physik.uni-muenchen.de/~Philipp.Stephani/Asymptote/lmfit-doc.patch.
2009-07-05 13:06:41 UTC in Asymptote