Advertisement
thanhqtran

Tex Bib Code

Aug 17th, 2023
1,253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.13 KB | Source Code | 0 0
  1. \usepackage{natbib}
  2.  
  3. % Packages
  4. \usepackage[right=1.25in,left=1.25in,top=1.1in,bottom=1.1in]{geometry}
  5. \usepackage{etoolbox}
  6. \usepackage{booktabs}
  7. \usepackage{authblk}
  8. \usepackage{amsmath}
  9. \usepackage{amsfonts}
  10. \usepackage{amssymb}
  11. \usepackage{amsthm}
  12. \usepackage{mathtools}
  13. \usepackage{mathrsfs}
  14. \usepackage[hidelinks]{hyperref}
  15. \usepackage{xcolor}
  16. \usepackage{cases}
  17. \usepackage{empheq}
  18. \usepackage{enotez}
  19. \usepackage{pdflscape}
  20. \usepackage{natbib}
  21. \usepackage{graphicx}
  22. \usepackage{subcaption}
  23. \usepackage{multirow} %% Necessary if we are doing tables in LaTeX
  24. \usepackage{xr}
  25.  
  26. % optional
  27.  
  28. % Hypersetup for hyperlinks
  29. \hypersetup{
  30.     pdftitle={Your title here},
  31.     pdfauthor={Your name here},
  32.     pdfsubject={Your subject here},
  33.     pdfkeywords={keyword1, keyword2},
  34.     bookmarksnumbered=true,    
  35.     bookmarksopen=true,        
  36.     bookmarksopenlevel=1,      
  37.     colorlinks=true,            
  38.     pdfstartview=Fit,          
  39.     pdfpagemode=UseOutlines,    % This is the option you were looking for
  40.     pdfpagelayout=TwoPageRight,
  41.     linkcolor={red!50!black},
  42.     citecolor={blue!50!black},
  43.     urlcolor={blue!80!black}
  44. }
  45.  
  46. % tikz and plots
  47. \usepackage{tikz}
  48. \usepackage{tikzscale}
  49. \usetikzlibrary{arrows,calc, automata, patterns, positioning, shapes.geometric, decorations.pathreplacing,decorations.markings}
  50. %add plot
  51. \usepackage{pgfplots}
  52. \usepgfplotslibrary{groupplots}
  53. \pgfplotsset{width=10cm,compat=1.9}
  54.  
  55. % color scheme
  56. \newcommand{\red}[1]{\textcolor{red}{#1}}
  57. \newcommand{\blue}[1]{\textcolor{blue}{#1}}
  58. \newcommand{\green}[1]{\textcolor{green}{#1}}
  59. \newcommand{\teal}[1]{\textcolor{teal}{#1}}
  60.  
  61. % quick maths
  62. \newtheorem{theorem}{Theorem}
  63. \newtheorem{corollary}{Corollary}
  64. \newtheorem{lemma}[theorem]{Lemma}
  65. \newtheorem{ass}{Assumption}
  66. \theoremstyle{definition}\newtheorem{remark}{Remark}
  67.  
  68. \theoremstyle{definition}\newtheorem{definition}{Definition}
  69. \newtheorem{prop}{Proposition}
  70. \newtheorem{notation}{Notation}
  71. \theoremstyle{definition}\newtheorem{fact}{Fact}
  72. \renewcommand\qedsymbol{$\blacksquare$}
  73.  
  74. \begin{document}
  75. % content %
  76.  
  77. \newpage
  78. \bibliographystyle{apalike}
  79. \bibliography{references5.bib}
  80.  
  81. \end{document}
Tags: LaTeX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement