Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. DefineBibliographyStrings{english}{series = {Seradddotaddcolonspace{#1}isdot}}
  2.  
  3. DefineBibliographyStrings{russian}{series = {Серadddotaddcolonspace{#1}isdot}}
  4.  
  5. DeclareFieldFormat{series}{iffieldequalstr{hyphenation}{russian}{Сер}{Ser}adddotaddcolonspace{#1}isdot} %
  6.  
  7. documentclass{memoir}
  8.  
  9. usepackage{filecontents}
  10.  
  11. begin{filecontents}{jobname.bib}
  12. @INBOOK{Inbook,
  13. author = {Peter Eston},
  14. title = {The title of the work},
  15. booktitle = {Book title},
  16. chapter = {8},
  17. pages = {201-213},
  18. publisher = {The name of the publisher},
  19. year = {1993},
  20. volume = {4},
  21. series = {5},
  22. address = {The address of the publisher},
  23. edition = {3},
  24. month = {7},
  25. hyphenation = {english}
  26. }
  27.  
  28. @Book{avtonomova:fya,
  29. author = {Н. С. Автономова},
  30. title = {Философский язык Жака Деррида},
  31. year = 2011,
  32. publisher = {Российская политическая энциклопедия (РОССПЭН)},
  33. location = {М.},
  34. isbn = {978-5-8243-1618-6},
  35. series = {Российские Пропилеи},
  36. pagetotal = 510,
  37. hyphenation =russian,
  38. }
  39. end{filecontents}
  40.  
  41. usepackage[T2A,T1]{fontenc}
  42. usepackage[utf8]{inputenc}[2014/04/30] %
  43. usepackage[english, russian]{babel}[2014/03/24]%
  44.  
  45.  
  46. usepackage[%
  47. backend=biber,
  48. bibencoding=utf8,
  49. style=gost-numeric,
  50. babel=other,
  51. defernumbers=true,
  52. sortcites=true,
  53. doi=true,
  54. ]{biblatex}[2016/09/17]
  55. %add Ser.: to series format
  56.  
  57. %%% First approach
  58. %DefineBibliographyStrings{english}{series = {Seradddotaddcolonspace{#1}isdot}}
  59. %
  60. %DefineBibliographyStrings{russian}{series = {Серadddotaddcolonspace{#1}isdot}}
  61.  
  62.  
  63. %%% Third approach
  64. DeclareFieldFormat{series}{iffieldequalstr{hyphenation}{russian}{Сер}{Ser}adddotaddcolonspace{#1}isdot} % do not work
  65.  
  66. %% Work perfectly
  67. %DeclareFieldFormat{series}{iffieldequalstr{pagetotal}{510}{Сер}{Ser}adddotaddcolonspace{#1}isdot} %
  68. addbibresource{jobname.bib}
  69.  
  70. begin{document}
  71.  
  72. cite{avtonomova:fya,Inbook}
  73.  
  74. printbibliography
  75.  
  76. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement