Re: latex/bibtex python paper?

2005-07-07 Thread Jorgen Grahn
On 6 Jul 2005 08:28:45 -0700, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Hi All,

 Does anyone have a good template that I might use for writing a python
 paper in latex/bibtex?  I've got the paper mostly done, but am having
 issues with the references.  I am definitely not an expert at
 latex/bibtex.  Right now, I have references defined like this:
...

 When I cite these, I get something like this (Foundation[2005]).  Is
 anyone willing to offer up a tarball of a complete paper with sty and
 bst that would make for a nice python paper?

You really, really should Google around for BibTeX information, or ask in a
TeX newsgroup. (Unless I misunderstood you, and Python is somehow involved
as something more than the subject of your paper?)

I have used BibTeX in the past, but forgotten the details. Getting the exact
citation style you want is tricky (and you didn't even say what you wanted
the citations to look like).  There seem to be many newer, contributed
styles which aren't trivial to find without help.

/Jorgen

-- 
  // Jorgen Grahn jgrahn@   Ph'nglui mglw'nafh Cthulhu
\X/algonet.se   R'lyeh wgah'nagl fhtagn!
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: latex/bibtex python paper?

2005-07-07 Thread Florian Diesch
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Does anyone have a good template that I might use for writing a python
 paper in latex/bibtex?  I've got the paper mostly done, but am having
 issues with the references.  I am definitely not an expert at
 latex/bibtex.  Right now, I have references defined like this:

 @article{imp,
   title = {imp -- Access the import internals},
   journal = http://www.python.org/doc/current/lib/module-imp.html;,
   author = {Python Software Foundation},
   year = {2005}
 }

 When I cite these, I get something like this (Foundation[2005]).  Is
 anyone willing to offer up a tarball of a complete paper with sty and
 bst that would make for a nice python paper?

I would use

@Manual{imp,
  title ={imp -- Access the import internals},
  key =  {imp},
  organization = {Python Software Foundation},
  address =  {\url{http://www.python.org/doc/current/lib/module-imp.html}},
  year = 2005
}

You need hyperref for \url.
With \bibliographystyle{apalike} I get imp (2005), but that depends on what
you want your references look like. I think you better ask in a TeX group 
about that. 



   Florian
-- 
begin  signature_virus
 Hi! I'm a signature virus. Please copy me to your signature to help me spread.
end
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: latex/bibtex python paper?

2005-07-07 Thread ansobol
Kurt,

Try http://www.tex.ac.uk/cgi-bin/texfaq2html?label=citeURL and search
this site (the famous UK TeX FAQ) at
http://www.tex.ac.uk/cgi-bin/texfaq2html?introduction=yes#search for
other info.

You might also ask this question at the comp.text.tex group (which, in
my experience, is as nice as this one).

HTH
Andrei

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: latex/bibtex python paper?

2005-07-07 Thread Jules Dubois
On Wednesday 06 July 2005 09:28, [EMAIL PROTECTED] [EMAIL PROTECTED]
([EMAIL PROTECTED]) wrote:

 Hi All,
 
 Does anyone have a good template that I might use for writing a python
 paper in latex/bibtex?  [...]
 
 When I cite these, I get something like this (Foundation[2005]).

Questions like this are better asked in comp.text.tex, where they are
on-topic.

There is a fine TeX/LaTeX/etc. FAQ at:

  http://www.tex.ac.uk/cgi-bin/texfaq2html

Finally, here are some sample bibtex results:

  http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html
-- 
http://mail.python.org/mailman/listinfo/python-list


latex/bibtex python paper?

2005-07-06 Thread schwehr
Hi All,

Does anyone have a good template that I might use for writing a python
paper in latex/bibtex?  I've got the paper mostly done, but am having
issues with the references.  I am definitely not an expert at
latex/bibtex.  Right now, I have references defined like this:

@article{imp,
  title = {imp -- Access the import internals},
  journal = http://www.python.org/doc/current/lib/module-imp.html;,
  author = {Python Software Foundation},
  year = {2005}
}

When I cite these, I get something like this (Foundation[2005]).  Is
anyone willing to offer up a tarball of a complete paper with sty and
bst that would make for a nice python paper?

Thanks!
-kurt
http://schwehr.org/software/segy-py

-- 
http://mail.python.org/mailman/listinfo/python-list