@@ -479,8 +479,9 @@ \subsection{Citing commands}
479
479
\end {example }
480
480
481
481
Another set of commands allows us to extract specific information from
482
- the bibliographic entry, and use the information directly in the text. This is includes commands such as \csi {citeauthor},
483
- \csi {citetitle}, \csi {citeyear}, \csi {citedate}, \csi {citeurl}.
482
+ the bibliographic entry, and use the information directly in the text. This
483
+ includes commands such as \csi {citeauthor}, \csi {citetitle}, \csi {citeyear},
484
+ \csi {citedate}, \csi {citeurl}.
484
485
485
486
\begin {example }[standalone,
486
487
biber,
@@ -553,20 +554,28 @@ \subsection{Citing commands}
553
554
554
555
\subsection {More about entries }
555
556
556
- \hologo {biber} uses `` and'' as a separator in author entries. To prevent
557
- this behaviour, enclose `` and'' in curly brackets
557
+ \hologo {biber} uses \enquote { and} as a separator in certain entries. To prevent
558
+ this behaviour, enclose \enquote { and} in curly brackets
558
559
\begin {minted }{bibtex}
559
560
@book{kru,
560
- author = {Kruger {and} sons}
561
+ publisher = {Kruger {and} sons}
561
562
}
562
563
\end {minted }
563
564
The same trick may be useful when \hologo {biber} changes capitalisation, even
564
- though it shouldn't.
565
+ though it shouldn't. On top of this \hologo {biber} splits author entries into
566
+ smaller bits which are then used elsewhere. So in \autoref {lst:bibfile } the
567
+ name Jane Diviner is split into the first name Jane and the surname Diviner.
568
+ When you don't want this, enclose the entire name in braces
569
+ \begin {minted }{bibtex}
570
+ @book{kru,
571
+ author = {{Kruger brothers}}
572
+ }
573
+ \end {minted }
565
574
566
575
When writing about certain subject it often happens that the same author or
567
576
publishing company released several books. In order to reuse the information in
568
- several entries in the \eei {.bib} file, a special entry \cargv {xdata} is available. It may be used
569
- like this
577
+ several entries in the \eei {.bib} file, a special entry \cargv {xdata} is
578
+ available. It may be used like this
570
579
571
580
\begin {example }[standalone,
572
581
biber,
@@ -578,8 +587,8 @@ \subsection{More about entries}
578
587
\begin {filecontents }{example2.bib}
579
588
% !hideend
580
589
@xdata{krugers,
581
- author = {Kruger {and} sons },
582
- publisher = {Krugers Inc. },
590
+ author = {{ Kruger brothers} },
591
+ publisher = {Kruger {and} sons },
583
592
location = {Paris}
584
593
}
585
594
@@ -604,3 +613,4 @@ \subsection{More about entries}
604
613
\printbibliography
605
614
\end {document }
606
615
\end {example }
616
+
0 commit comments