BibTeX, biblatex and biber ⇒ Title loses formatting
Title loses formatting
title={Four IRAC Sources with an Extremely Red H – [3.6] Color: Passive or Dusty Galaxies at z > 4.5?}
becomes
four irac sources with an extremely red h [3.6] color: Passive or dusty galax-
ies at z ¿ 4.5?
Plus I also get the following warnings when I compile.
Underfull \hbox (badness 1571) in paragraph at lines 39--45
\OT1/cmr/m/n/10.95 "four irac sources with an ex-tremely red h [3.6] color: Pa
s-sive or dusty galax-
I read somewhere that it should leave the formatting as it is if the text is inside braces, but this doesn't seem to be the case.
Does anyone know how I can get the title to display as intended?
Thanks
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
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Title loses formatting
welcome to the board!
You could protect the contents by additional braces, such as:
Code: Select all
title={{Four IRAC Sources with an Extremely Red H – [3.6] Color:
Passive or Dusty Galaxies at z > 4.5?}}
Code: Select all
title={Four {IRAC} Sources with an Extremely Red H – [3.6] Color:
Passive or Dusty Galaxies at z > 4.5?}
{E}xtemely
or similar to not harm kerning within a word.To get a proper > sign, I would switch to T1 font encoding:
Code: Select all
\usepackage[T1]{fontenc}
Title loses formatting
Code: Select all
title= "{F}our {IRAC} {S}ources with an {E}xtremely {R}ed {H -- [3.6]} {C}olor: {P}assive or {D}usty {G}alaxies at {z $>$ 4.5?}"
I'm now having trouble working out how to get the symbol ~ to appear. I've tried $~$ but that didn't work. Any suggestions?
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Title loses formatting
$\sim$
would work.In textmode, you could use
\char`\~
or \texttt{\char`\~}
.Stefan
Title loses formatting
\textasciitilde
.Regards