Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.44 KB | None | 0 0
  1. ! Undefined control sequence.
  2. <argument> ...docsvlist expandafter {bbl@loaded
  3. }ifboolexpr { not test {...
  4. l.51 begin{document}
  5.  
  6. The control sequence at the end of the top line
  7. of your error message was never def'ed. If you have
  8. misspelled it (e.g., `hobx'), type `I' and the correct
  9. spelling (e.g., `Ihbox'). Otherwise just continue,
  10. and I'll forget about whatever was undefined.
  11.  
  12. %----------------------------------------------------------------------------------------
  13. % VARIOUS REQUIRED PACKAGES AND CONFIGURATIONS
  14. %----------------------------------------------------------------------------------------
  15.  
  16. usepackage[top=3cm,bottom=3cm,left=3cm,right=3cm,headsep=10pt,a4paper]{geometry} % Page margins
  17.  
  18. usepackage{graphicx} % Required for including pictures
  19. graphicspath{{Pictures/}} % Specifies the directory where pictures are stored
  20.  
  21. usepackage{lipsum} % Inserts dummy text
  22.  
  23. usepackage{tikz} % Required for drawing custom shapes
  24.  
  25. usepackage[english]{babel} % English language/hyphenation
  26.  
  27. usepackage{enumitem} % Customize lists
  28. setlist{nolistsep} % Reduce spacing between bullet points and numbered lists
  29.  
  30. usepackage{booktabs} % Required for nicer horizontal rules in tables
  31.  
  32. usepackage{xcolor} % Required for specifying colors by name
  33. definecolor{ocre}{RGB}{243,102,25} % Define the orange color used for highlighting throughout the book
  34.  
  35. %----------------------------------------------------------------------------------------
  36. % FONTS
  37. %----------------------------------------------------------------------------------------
  38.  
  39. usepackage{avant} % Use the Avantgarde font for headings
  40. %usepackage{times} % Use the Times font for headings
  41. usepackage{mathptmx} % Use the Adobe Times Roman as the default text font together with math symbols from the Sym­bol, Chancery and Com­puter Modern fonts
  42.  
  43. usepackage{microtype} % Slightly tweak font spacing for aesthetics
  44. usepackage[utf8]{inputenc} % Required for including letters with accents
  45. usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs
  46.  
  47. %----------------------------------------------------------------------------------------
  48. % BIBLIOGRAPHY AND INDEX
  49. %----------------------------------------------------------------------------------------
  50.  
  51. usepackage[style=alphabetic,citestyle=numeric,sorting=nyt,sortcites=true,autopunct=true,babel=hyphen,hyperref=true,abbreviate=false,backref=true,backend=biber]{biblatex}
  52. addbibresource{bibliography.bib} % BibTeX bibliography file
  53. defbibheading{bibempty}{}
  54.  
  55. usepackage{calc} % For simpler calculation - used for spacing the index letter headings correctly
  56. usepackage{makeidx} % Required to make an index
  57. makeindex % Tells LaTeX to create the files required for indexing
  58.  
  59. %----------------------------------------------------------------------------------------
  60. % MAIN TABLE OF CONTENTS
  61. %----------------------------------------------------------------------------------------
  62.  
  63. usepackage{titletoc} % Required for manipulating the table of contents
  64. %----------------------------------------------------------------------------------------
  65. % PAGE HEADERS
  66. %----------------------------------------------------------------------------------------
  67.  
  68. usepackage{fancyhdr} % Required for header and footer configuration
  69.  
  70. pagestyle{fancy}
  71. %----------------------------------------------------------------------------------------
  72. % THEOREM STYLES
  73. %----------------------------------------------------------------------------------------
  74.  
  75. usepackage{amsmath,amsfonts,amssymb,amsthm} % For math equations, theorems, symbols, etc
  76.  
  77. %----------------------------------------------------------------------------------------
  78. % DEFINITION OF COLORED BOXES
  79. %----------------------------------------------------------------------------------------
  80.  
  81. RequirePackage[framemethod=default]{mdframed} % Required for creating the theorem, definition, exercise and corollary boxes
  82.  
  83. %----------------------------------------------------------------------------------------
  84. % HYPERLINKS IN THE DOCUMENTS
  85. %----------------------------------------------------------------------------------------
  86.  
  87. usepackage{hyperref}
  88. hypersetup{hidelinks,backref=true,pagebackref=true,hyperindex=true,colorlinks=false,breaklinks=true,urlcolor= ocre,bookmarks=true,bookmarksopen=false,pdftitle={Title},pdfauthor={Author}}
  89. usepackage{bookmark}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement