Skip to content

Instantly share code, notes, and snippets.

@luffy-yu
Last active August 4, 2023 20:46
Show Gist options
  • Save luffy-yu/5ac6a54c5fc6835399f68169e1b33dd6 to your computer and use it in GitHub Desktop.
Save luffy-yu/5ac6a54c5fc6835399f68169e1b33dd6 to your computer and use it in GitHub Desktop.
GMU CS Comprehensive Read List Latex Template
\documentclass{article}
\usepackage{natbib}
\usepackage{bibentry}
\nobibliography*
% new command to add item bibentry
\newcommand{\itembib}{\item[] \bibentry} % remove [] to show bullet
%%%%%%%%%%% Set page %%%%%%%%%%%
\usepackage{geometry}
\geometry{
a4paper,
total={210mm,297mm},
left=20mm,
top=20mm,
right=20mm,
bottom=20mm
}
% Hide page number
\usepackage{nopageno}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%% Set title %%%%%%%%%%%
\title{
Joe Doe \\
PhD in Computer Science \\
Sample Oral Comprehensive Exam Reading List \\
Fall 202x
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\date{} % Hide date
\begin{document}
\maketitle
\thispagestyle{empty} % Hide page number
\section*{Conference/Workshop papers}
\begin{itemize}
\itembib{key_in_the_bib_file}. % replace key_in_the_bib_file with the key in bib file
\end{itemize}
\section*{Journal Papers}
\begin{itemize}
\itembib{key_in_the_bib_file}. % replace key_in_the_bib_file with the key in bib file
\end{itemize}
\section*{Books}
\begin{itemize}
\itembib{key_in_the_bib_file}. % replace key_in_the_bib_file with the key in bib file
\end{itemize}
\section*{Other References}
\begin{itemize}
\itembib{key_in_the_bib_file}. % replace key_in_the_bib_file with the key in bib file
\end{itemize}
% More styles are in https://www.overleaf.com/learn/latex/Natbib_bibliography_styles
\bibliographystyle{plainnat}
%%%%%%%%%%% Hide reference section %%%%%%%%%%%
\hphantom{\vphantom{
\begin{minipage}{\textwidth}
\bibliography{main.bib} % replace it with the real bib file
\end{minipage}
}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment