|
@@ -655,16 +655,22 @@ $bibtex = "
|
655
|
655
|
<pre>
|
656
|
656
|
@misc{ BioTorrents.de-$TorrentID,";
|
657
|
657
|
|
658
|
|
- foreach ($Artists as $Num => $Artist) {
|
659
|
|
- $bibtex .= "\n author = '".Artists::display_artist($Artist)."',";
|
660
|
|
- }
|
|
658
|
+foreach ($Artists as $Num => $Artist) {
|
|
659
|
+ $bibtex .= "\n author = {".Artists::display_artist($Artist)."},";
|
|
660
|
+}
|
|
661
|
+
|
|
662
|
+if(!empty($GroupNameRJ)) {
|
|
663
|
+ $bibtex .= "\n title = {".$GroupName."---$GroupNameRJ $GroupNameJP},";
|
|
664
|
+} else {
|
|
665
|
+ $bibtex .= "\n title = {".$GroupName."},";
|
|
666
|
+}
|
661
|
667
|
|
662
|
668
|
$bibtex .= "
|
663
|
|
- title = '$GroupName',
|
664
|
|
- year = '$GroupYear',
|
|
669
|
+ year = {".$GroupYear."},
|
665
|
670
|
url = \href{https://biotorrents.de/torrents.php?torrentid=$TorrentID},
|
666
|
|
- note = 'Online; accessed ".strftime('%Y-%m-%d')."',
|
667
|
|
-},";
|
|
671
|
+ note = {Online; accessed ".strftime('%Y-%m-%d')."},
|
|
672
|
+},
|
|
673
|
+</pre>";
|
668
|
674
|
|
669
|
675
|
echo $bibtex;
|
670
|
676
|
?>
|