On 20/07/12 13:05, Jack wrote:
> "Dan" <
luec...@uark.edu> wrote in message
> news:90f10ee9-0812-4c54...@6g2000vbv.googlegroups.com...
> On Jul 19, 6:18 am, "Jack" <
no1email...@hotmail.com> wrote:
>>> Is there any way I can get the heading 'REFERENCES' looking more like
>>> the headings I get when I use \noindent\textbf{} ?
As others have pointed out, you shouldn't be doing that anyway: it just
makes your document more prone to error and harder to update.
Use the \section, \subsection, \subsubsection etc commands.
>> The bibliography is designed to produce a section heading. That is, it is
>> designed to match (more or less) the results of
>> \section{}.
[...]
>
> My heirarchy follows the pattern:
> 1. Heading
> 1.1. Subheading
> 1.1.1 Sub-subheading
> 1.1.2 Sub-heading
> etc.
>
> 1.2 Subheading
> etc.
>
> 2. Heading
> etc.
>
> In the the category of sub-subheading, I include 'Definition', 'Remark',
> 'Corollary'.
>
> How can I retain this?
You have to redefine the "thebibliography" environment to do this (there
is some hard-wired design in LaTeX's default document classes, I'm
afraid). Include the following in your preamble (between the
\documentclass line and the \begin{document} line):
\makeatletter
\newenvironment{thebibliography}[1]
{\subsection*{\refname}%
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
\list{\@biblabel{\@arabic\c@enumiv}}%
{\settowidth\labelwidth{\@biblabel{#1}}%
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\@openbib@code
\usecounter{enumiv}%
\let\p@enumiv\@empty
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
\sloppy
\clubpenalty4000
\@clubpenalty \clubpenalty
\widowpenalty4000%
\sfcode`\.\@m}
{\def\@noitemerr
{\@latex@warning{Empty `thebibliography' environment}}%
\endlist}
\makeatother
> One thing -- I rather expected the numbers in square brackets,
> that are yielded by the \cite command, to be superscripted, but they're
> not. Is that as it should be?
By default, yes. But you can change the style of citations using one of
the packages designed for the purpose. I don't offhand remember which
one implements superscript citation marks, but someone else will...
///Peter