Blanca Mancilla | 21 May 2013 14:55
Picon

error when running \psbarcode

** WARNING ** 5 memory objects still allocated
You may want to report this to tex-k-WUdSmCIlby8@public.gmane.org

------------------------------------------------------------------------------------------

Hi,
I get this error when introducing \psbarcode in a xetex document.
Do you want the full log?
Regards,
bm
L.Liu | 26 Apr 2013 21:21
Picon
Picon
Favicon

resubmit problem

Dear Editor,

I got following WARNING when resubmitting the manuscript # A13.02.0055R. Would this be the reason that we couldn't replace Fig.14 in merged File, though the PDF file of individual o. Figure -14 is updated correctly . Could you please help me to have a check and replace it?


"c:/temp/latex/JCP_star.dvi -> c:/temp/latex/JCP_star.pdf
[1][2][3][4][5][6][7][8][9][10][11][12][13][14][15][16][17][18][19][20][21][22][23][24][25][26][27][28][29][30]
1661796 bytes written

** WARNING ** -2 memory objects still allocated
You may want to report this to tex-k-WUdSmCIlby8@public.gmane.org"

Thank you very much
Kind regards,
Li
Andrew Komornicki | 23 Apr 2013 07:53
Picon
Favicon

a question about tlmgr on Windows


Karl and friends, 

I have a question and a problem relating to tlmgr. 

As a long time user of TeX and friends I installed Texlive 2009 in 2010 on my 
then new Win XP laptop.  More recently I realized that tlmgr has ceased to 
function.  Quite simply, whenever I try to invoke it, Windows responds with 
the message:  
          perl.exe has encountered a problem and needs to close. 
          We are sorry for the inconvenience.

The current tug.org/texlive/tlmgr pages indicate that there is a fix for 
disaster recovery.  Specifically it suggests to download update-tlmgr-latest.exe 

I have done that.  running that executable produces that same message, that 
perl.exe has encountered a problem...........  

is there a simpler fix, save for a clean install of TeXlive (??)   
I really like my present installation, and have been very productive with this. 
any suggestions are very much appreciated.  

regards,
andrew 

樊智猛 | 17 Apr 2013 12:25
Favicon

About Kpathsea

Dear Karl Berry, Olaf Weber, and Taco Hoekwater,

I am an user of LaTeX in China. I hava a question that may sounds silly: 
why Kpathsea is called Kpathsea?, is it a word in Dutch, German, or not 
a word at all?

--

-- 
  Zhimeng Fan

Student(Bachelor Candidate)

Tongji University

School of Electronics and Information Engineering

ShangHai,P.R.China

Norman Gray | 14 Apr 2013 13:25
Picon
Picon
Gravatar

Building standalone kpathsea


Greetings.

Here (in case it's useful) are some instructions for building a standalone kpathsea library.  I don't think
many people want to do this, but I do, and I might as well share my how-to (google: come ye and fetch...).

Building from Subversion:

You can check out the entire tree (svn co svn://tug.org/texlive/trunk/Build/source) but that takes a
_long_ while.  Or you can check out just the required bits:

  % svn co svn://tug.org/texlive/trunk/Build/source/m4
  % svn export svn://tug.org/texlive/trunk/Build/source/version.ac
  % svn co svn://tug.org/texlive/trunk/Build/source/texk/am texk/am
  % svn co svn://tug.org/texlive/trunk/Build/source/texk/kpathsea texk/kpathsea
  % svn co svn://tug.org/texlive/trunk/Build/source/texk/tests/texmf texk/tests/texmf
  % cd texk/kpathsea

Then build:

  % autoreconf --install --symlink
  % ./configure
  % make
  % make check
  % make install

Alternatively, snarf a copy of the base tree from eg
<http://www.tex.ac.uk/tex-archive/graphics/metapost/base.zip>, unpack it, cd to
base/source/texk/kpathsea, and build as above.

All the best,

Norman

--

-- 
Norman Gray  :  http://nxg.me.uk
SUPA School of Physics and Astronomy, University of Glasgow, UK

Norman Gray | 14 Apr 2013 13:23
Picon
Picon
Gravatar

Apparent include loop in str-llist.h


Greetings.

When trying to build a standalone version of the kpathsea library, I've come across what appears to be an
include loop in the headers.

kpathsea/types.h includes kpathsea/str-llist.h, which includes kpathsea/types.h.  This leads at
least one version of gcc into terminal confusion:

% gcc --version
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

% cat try.c                             
#include <kpathsea/pathsearch.h>
% gcc -I $T/kpathsea-6.1.1/include try.c
In file included from /Data/tools/kpathsea-6.1.1/include/kpathsea/str-llist.h:26,
                 from /Data/tools/kpathsea-6.1.1/include/kpathsea/pathsearch.h:23,
                 from try.c:1:
/Data/tools/kpathsea-6.1.1/include/kpathsea/types.h:88: error: expected
specifier-qualifier-list before ‘str_llist_type’
% 

(Here, .../kpathsea-6.1.1 contains an install of the current SVN HEAD).

Note: i686-apple-darwin11-llvm-gcc-4.2 is the default compiler on OS X 10.8.

This is fixed (not necessarily ideally) by:

% svn diff str-llist.h
Index: str-llist.h
===================================================================
--- str-llist.h	(revision 29913)
+++ str-llist.h	(working copy)
 <at>  <at>  -23,7 +23,9  <at>  <at> 
 #define STR_LLIST_H

 #include <kpathsea/c-proto.h>
-#include <kpathsea/types.h>
+/* Do not include types.h, because that wants to include this file */
+/* types.h defines string to be char* and boolean to be int */
+/* #include <kpathsea/types.h> */

 
 /* It's a little bizarre to be using the same type for the list and the
 <at>  <at>  -33,8 +35,10  <at>  <at> 

 struct str_llist_elt
 {
-  string str;
-  boolean moved;
+  char * str;
+  int moved;
+  /* string str; */ /* ...with types.h */
+  /* boolean moved; */
   struct str_llist_elt *next;
 };
 typedef struct str_llist_elt str_llist_elt_type;
%

Best wishes,

Norman

--

-- 
Norman Gray  :  http://nxg.me.uk
SUPA School of Physics and Astronomy, University of Glasgow, UK

Norbert Preining | 18 Mar 2013 00:01
Picon
Favicon
Gravatar

dvips segfault

Hi everyone,

at Debian we got a bug report about segfaulting dvips when reading
and writing to itself .. (yes I know it is not very intelligent,
but still segfaulting is not optimal):

$ latex `kpsewhich sample2e.tex`
...
$ dvips -osample2e.dvi sample2e.dvi
This is dvips(k) 5.992 Copyright 2012 Radical Eye Software (www.radicaleye.com)
' TeX output 2013.03.18:0800' -> sample2e.dvi
</home/norbert/tl/2012/texmf/dvips/base/tex.pro>
</home/norbert/tl/2012/texmf/dvips/base/texps.pro>. 
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb>
</home/norbert/tl/2012/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb>
[1887007337Segmentation fault

This is with current TeX Live 2012 (but the same in old versions and
Debian versions).

Maybe that can be handled sooner or later, but no hurry I guess.

Thanks

Norbert

------------------------------------------------------------------------
PREINING, Norbert                               http://www.preining.info
JAIST, Japan                                 TeX Live & Debian Developer
DSA: 0x09C5B094   fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
------------------------------------------------------------------------

Enrico Martoglio | 28 Feb 2013 13:42
Picon

MULTIPLE FILES

Got a problem with epstopdf...
It only works with a single file, but if I'd have ie 4 or 5 eps files in 
a folder, what can I do to process'em at once?
The sintax epstopdf ./*.eps doesn't work.
Greets from Italy
Henry

Ulrich Goebel | 29 Jan 2013 10:19
Picon

Report a WARNING

Dear TeX-Developer,

running xelatex on my LaTeX-document brings the message:

** WARNING ** 4 memory objects still allocated
You may want to report this to tex-k@...

So I report this to You. Which more information do You need to make that 
helpful?

The resulting PDF doesn't show any error, so I don't really worry about 
this warning. But if it make sense, I like to help do avoid it.

Ulrich

--

-- 
Ulrich Goebel
Sonnenrain 29, 53757 Sankt Augustin
Tel.: 02241-8799288

Joe [AmigaMan] Gonzalez | 13 Jan 2013 05:33

** WARNING ** 9 memory objects still allocated


Hello, I received this warning when trying out the file node17.tex from the pstricks example. I'm including the transcript and the original tex file I ran under xelatex. Thanks


$ xelatex node17.tex This is XeTeX, Version 3.1415926-2.4-0.9998 (TeX Live 2012) restricted \write18 enabled. entering extended mode (./node17.tex LaTeX2e <2011/06/27> Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, ge rman-x-2012-05-30, ngerman-x-2012-05-30, afrikaans, ancientgreek, ibycus, arabi c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis h, french, friulan, galician, german, ngerman, swissgerman, monogreek, greek, h ungarian, icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, ma rathi, oriya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian, kurmanji, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk, polish, portuguese, romanian, romansh, russian, sanskrit, serbian, serbianc, s lovak, slovenian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian, welsh, loaded. (/usr/local/texlive/2012/texmf-dist/tex/latex/base/article.cls Document Class: article 2007/10/19 v1.4h Standard LaTeX document class (/usr/local/texlive/2012/texmf-dist/tex/latex/base/size12.clo)) (/usr/local/texlive/2012/texmf-dist/tex/latex/base/fontenc.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/base/t1enc.def)) (/usr/local/texlive/2012/texmf-dist/tex/latex/base/inputenc.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/base/utf8.def (/usr/local/texlive/2012/texmf-dist/tex/latex/base/t1enc.dfu) (/usr/local/texlive/2012/texmf-dist/tex/latex/base/ot1enc.dfu) (/usr/local/texlive/2012/texmf-dist/tex/latex/base/omsenc.dfu))) (/usr/local/texlive/2012/texmf-dist/tex/generic/babel/babel.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/babel/ngermanb.ldf (/usr/local/texlive/2012/texmf-dist/tex/generic/babel/babel.def))) (/usr/local/texlive/2012/texmf-dist/tex/latex/pstricks-add/pstricks-add.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/pstricks/pstricks.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks/pstricks.tex (/usr/local/texlive/2012/texmf-dist/tex/generic/xkeyval/pst-xkey.tex (/usr/local/texlive/2012/texmf-dist/tex/latex/xkeyval/xkeyval.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/local/texlive/2012/texmf-dist/tex/generic/xkeyval/keyval.tex)))) (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks/pst-fp.tex `pst-fp' v0.05, 2010/01/17 (hv)) (/usr/local/texlive/2012/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te x) (/usr/local/texlive/2012/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (/usr/local/texlive/2012/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c ode.tex)) (/usr/local/texlive/2012/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex) `PSTricks' v2.35  <2012/12/21> (tvz) (/usr/local/texlive/2012/texmf-dist/tex/xelatex/xetex-pstricks/pstricks.con (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks/config/xdvipdfmx.cfg)) (/usr/local/texlive/2012/texmf-dist/tex/xelatex/xetex-pstricks/pstricks.con (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks/config/xdvipdfmx.cfg Using PSTricks configuration for XeTeX+xdvipdfmx ))) (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks/pst-fp.tex) (/usr/local/texlive/2012/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/color.cfg) (/usr/local/texlive/2012/texmf-dist/tex/xelatex/xetex-def/xetex.def))) (/usr/local/texlive/2012/texmf-dist/tex/latex/pst-plot/pst-plot.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/xkeyval/pst-xkey.sty) (/usr/local/texlive/2012/texmf-dist/tex/latex/multido/multido.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/multido/multido.tex v1.42, 2010/05/14 <tvz>)) (/usr/local/texlive/2012/texmf-dist/tex/generic/pst-plot/pst-plot.tex v1.44, 2013/01/03 (tvz,hv))) (/usr/local/texlive/2012/texmf-dist/tex/latex/pst-node/pst-node.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/pst-node/pst-node.tex v1.25, 2012/09/21)) (/usr/local/texlive/2012/texmf-dist/tex/latex/pst-3d/pst-3d.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/pst-3d/pst-3d.tex `PST-3d' v1.11, 2010/02/14 (tvz))) (/usr/local/texlive/2012/texmf-dist/tex/latex/pst-math/pst-math.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/pst-math/pst-math.tex `pst-math' v0.62 , (CJ,hv))) (/usr/local/texlive/2012/texmf-dist/tex/generic/pstricks-add/pstricks-add.tex `pstricks-add' v3.60, 2013/01/01 (dr,hv))) (/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphics.sty (/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/trig.sty) (/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/graphics.cfg))) (/usr/local/texlive/2012/texmf-dist/tex/latex/geometry/geometry.sty (/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/ifpdf.sty) (/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/ifvtex.sty) (/usr/local/texlive/2012/texmf-dist/tex/generic/ifxetex/ifxetex.sty)) No file node17.aux. *geometry* driver: auto-detecting *geometry* detected driver: xetex (/usr/local/texlive/2012/texmf-dist/tex/latex/base/t1cmtt.fd) [1] [2] (./node17.aux) ** WARNING ** 9 memory objects still allocated You may want to report this to tex-k-WUdSmCIlby8@public.gmane.org ) Output written on node17.pdf (2 pages). Transcript written on node17.log.
Joe Gonzalez

Attachment (node17.tex): text/x-tex, 3431 bytes
Attachment (node17.log): text/x-log, 22 KiB
François Boone | 14 Jan 2013 16:10
Picon
Favicon

First message: Xelatex, pstricks and Mountain Lion

Hi,

I am on Macbook pro, 2012, with Mountain Lion, 10.8.2.
My texlive 2012 is up to date : i update it with Tex Live Utility.

I have a problem:
This is my document:

\listfiles
\documentclass{minimal}
\usepackage{pstricks}
\begin{document}
\begin{pspicture}(0,0)(10cm,2cm)
\psline[linewidth=2pt,linecolor=red](0,0)(10,2)
\end{pspicture}
\end{document}

When I xelatex this simple example, I obtain a one blank page pdf file.

In console, I have this message:
(./ecm.aux) [1] (./ecm.aux)gs requires X11.  Please visit http://support.apple.com/kb/HT5293 for
more information.

** WARNING ** Filtering file via command -->rungs -q -dNOPAUSE -dBATCH -dNOSAFER -sPAPERSIZE=a0
-sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -dAutoFilterGrayImages=false
-dGrayImageFilter=/FlateEncode -dAutoFilterColorImages=false
-dColorImageFilter=/FlateEncode
-sOutputFile='/var/folders/tx/jz3ygk150jldyb_xjg26tbr40000gn/T//dvipdfmx.yQDiuc2o'
'/var/folders/tx/jz3ygk150jldyb_xjg26tbr40000gn/T//dvipdfmx.Y8pRsQwx' -c quit<-- failed.
** WARNING ** Image format conversion for PSTricks failed.
** WARNING ** Interpreting special command pst: (ps:) failed.
** WARNING ** >> at page="1" position="(91.9253, 663.307)" (in PDF)
** WARNING ** >> xxx "pst:  tx <at> Dict begin STP newpath /ArrowA { moveto } def /ArrowB "
** WARNING ** 5 memory objects still allocated
You may want to report this to tex-k@...

I had a long talk with Herbert Voss this last WE and we don't find a solution. Herbert works on PC, so it is
difficult to find the problem on Mac.
I someone can help me...

Thank-you
François


Gmane