Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I enter angle brackets in bibtex?

Tags:

latex

bibtex

I want to put a title field in a bibtex citation that includes angle brackets:

@article{
  title= { <foo> }
}

but when it compiles I get upside down '!' and '?' instead. How to escape the angle bracket?

like image 635
timdisney Avatar asked Mar 21 '10 00:03

timdisney


1 Answers

The main TeX font doesn't provide angle brackets—you have to use math symbols. Try

title = { $\langle$Foo$\rangle$ }

and be prepared for potential difficulties with alphabetization.

like image 50
Norman Ramsey Avatar answered Sep 21 '22 01:09

Norman Ramsey