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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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: 10335
- 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