Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. @article{serre1977linear,
  2. title={Linear representations of finite groups},
  3. author={Serre, Jean-Pierre},
  4. year={1977},
  5. publisher={Springer}
  6. }
  7.  
  8. documentclass[11pt, a4paper]{report}
  9. usepackage[utf8]{inputenc}
  10. usepackage[T1]{fontenc}
  11. usepackage{bm}
  12. usepackage{nccmath}
  13. usepackage{amsfonts, graphicx, verbatim, mathtools,amssymb, amsthm, mathrsfs}
  14. usepackage{color}
  15. usepackage{array}
  16. usepackage{setspace}% if you must (for double spacing thesis)
  17. usepackage{fancyhdr}
  18. usepackage{enumitem}
  19. usepackage{tikz}
  20. usepackage{parskip}
  21. usepackage{lipsum}
  22. usepackage{floatrow}
  23.  
  24. usepackage[style=numeric,maxbibnames=99,sortcites=true,backend=bibtex]{biblatex}
  25.  
  26. bibliography{groups & representations ref}
  27.  
  28. begin{document}
  29. A group is a set $G$ together with a binary operation $*$ on $G$ satisfying
  30. the following properties:cite{serre1977linear}
  31.  
  32. printbibliography
  33. end{document}
  34.  
  35. RequirePackage{filecontents}
  36. begin{filecontents}{References.bib}
  37. @book{serre1977linear,
  38. title = {Linear Representations of Finite Groups},
  39. author = {Serre, Jean-Pierre},
  40. year = {1977},
  41. publisher={Springer},
  42. address = {Berlin},
  43. series = {Graduate Texts in Mathematics},
  44. number = 42,
  45. }
  46. end{filecontents}
  47.  
  48. documentclass[11pt, a4paper]{article} % or 'report'
  49. usepackage[utf8]{inputenc}
  50. usepackage[T1]{fontenc}
  51. %omitted packages that are irrelvant for example at hand
  52.  
  53. usepackage[style=numeric,maxbibnames=99,sortcites=true,
  54. backend=bibtex]{biblatex}
  55. addbibresource{References.bib}
  56.  
  57. begin{document}
  58. A group is a set $G$ together with a binary operation~$*$
  59. on~$G$ satisfying the following properties: cite{serre1977linear}
  60.  
  61. printbibliography
  62. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement