1

Trying to Change Bibliography/References Header explains how to change the name of the section - but I want to change how it's printed. Any ideas? The customization I have in mind is quite simple - but this didn't work:

\DefineBibliographyStrings{english}{%
    references = {\hspace{-.82in}References},
}
Joe Corneli
  • 4,340
  • 3
    See here: Define your own header: http://tex.stackexchange.com/questions/41818/section-added-by-addcontentsline-on-the-wrong-page/52829#52829 – Marco Daniel May 27 '13 at 20:11
  • That does work, actually. (Not recommended, but it works.) If it doesn't work for you, it is because you're doing some 'extra' stuff. As always, provide a minimal example (or here). – jon May 27 '13 at 20:12

1 Answers1

3

Here's something silly that works for me.

\section*{\hspace{-.59in}References}
\printbibliography[heading=none]
Joe Corneli
  • 4,340