General ⇒ unnumbering bibliography
unnumbering bibliography
I am writing my thesis using WinEdt. All the entries in my bibliography are numbered. I don't want to have numbers. Could anyone please tell me how to remove numbers form bibliography?
My second problem is that I want to have chapter names in full in table of contents but it is showing the short titles that appear in the header of respective chapters. What Should I do?
Regards,
Sabiha
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
unnumbering bibliography
change your bibliographystyle, you got plenty of options.I am writing my thesis using WinEdt. All the entries in my bibliography are numbered. I don't want to have numbers. Could anyone please tell me how to remove numbers form bibliography?
plain Standard BIBT EX style. Entries sorted alphabetically with numeric labels.
unsrt Standard BIBT EX style. Similar to plain, but entries are printed in order of
citation, rather than sorted. Numeric labels are used.
alpha Standard BIBT EX style. Similar to plain, but the labels of the entries are formed
from the author’s name and the year of publication.
abbrv Standard BIBT EX style. Similar to plain, but entries are more compact, since
first names, month, and journal names are abbreviated.
acm Alternative BIBTEX style, used for the journals of the Association for Comput-
ing Machinery. It has the author name (surname and first name) in small caps,
dont use short titleMy second problem is that I want to have chapter names in full in table of contents but it is showing the short titles that appear in the header of respective chapters. What Should I do?
i assume your original text code is sth like
Code: Select all
\chapter[short title]{full title}
Regards
Re: unnumbering bibliography
I want to show short title in the header. What else can be done to keep this while showing full titles in table of contents?
Regards.
unnumbering bibliography
I assume that you are using the book class. In such a case, you can redefine \@chapter, an internal command invoked by \chapter. Try the following example:sabiha wrote: I want to show short title in the header. What else can be done to keep this while showing full titles in table of contents?
Code: Select all
\documentclass{book}
\makeatletter
\def\@chapter[#1]#2{%
\ifnum \c@secnumdepth >\m@ne
\if@mainmatter
\refstepcounter{chapter}%
\typeout{\@chapapp\space\thechapter.}%
\addcontentsline{toc}{chapter}%
{\protect\numberline{\thechapter}#2}%
\else
\addcontentsline{toc}{chapter}{#2}%
\fi
\else
\addcontentsline{toc}{chapter}{#2}%
\fi
\chaptermark{#1}%
\addtocontents{lof}{\protect\addvspace{10\p@}}%
\addtocontents{lot}{\protect\addvspace{10\p@}}%
\if@twocolumn
\@topnewpage[\@makechapterhead{#2}]%
\else
\@makechapterhead{#2}%
\@afterheading
\fi}
\makeatother
\usepackage{lipsum}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter[Short title of first chapter]{Full title of first chapter}
\lipsum[1-10]
\chapter[Short title of second chapter]{Full title of second chapter}
\lipsum[1-10]
\end{document}
Concerning the bibliography, you will find useful the natbib package, mainly oriented to unnumbered bibliographies and author-year citations.
Re: unnumbering bibliography
Thank a lot!
Best regards,