>>>>> "root" == root <[EMAIL PROTECTED]> writes:
root> i gotta get bibliography (bibtex generated refs) to show as a
root> TOC item.
layout-> Document->Extra Options add 'bibtotoc' or 'bibtotocnumbered'
root> dont work.
This is because these options only work with the koma-script family of
classes, which you may have instlled or not. The bibliography is a
misfeature of the classic LaTeX document classes, but we have to live
with it for compatibility's sake. The koma-script classes intend to
overcome some of the problems of the base classes.
root> am i being really dumb ?. If, so could some kind soul talk me
root> through it like a dummy. Or, is it not working for other poeple
root> ??
Here is another solution: In Layout->LaTeX_Preamble, add the following
incantation
\let\oldthebibliography=\thebibliography
\renewcommand{\thebibliography}[1]{
\oldthebibliography{#1}
\addtocontents{toc}{chapter}{\bibname}
}
If you use the article class, change the above to:
\let\oldthebibliography=\thebibliography
\renewcommand{\thebibliography}[1]{
\oldthebibliography{#1}
\addtocontents{toc}{section}{\refname}
}
Note that I did not test this code. So if it does not work, do not
assume that you are dumb, but ask again :)
JMarc