1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
@string{ test= "something" }
@string{ name1 = "Mr. Foo" }
@string{anch-ie = {Angew.~Chem. Int.~Ed.}}
@comment{
blahrg
}
@preamble{silly things
}
@SomeType{key1,
title = "Some title, with a comma in it",
year = {2017},
author = "Author1 and Author2",
other = {Something else}
}
@misc{key2,
title = {A new title},
author = name1 # " and Mr. Bar",
year = "1960",
}
@misc{key3,
tag1 = {{Bib}\TeX},
tag2 = "{Bib}\TeX",
tag3 = "{Bib}" # "\TeX",
publisher = "nob" # "ody",
year = 2005,
}
@misc{key4,
}
@misc{key5,
author = "text here " # test,
title = "title: " # anch-ie
}
@errorintags{key6,
title = {some title}
author = "should not work",
}
@article{knuth,
title = "Other title",
year = {1938},
author = "Donald Knuth",
key = {Knuth},
}
@article{knuth-single-line, title = "Other title", year = {1938}, author = "Donald Knuth", }
|