Overleaf to Texmaker Bibtex Template
Author
Lee Zhen Yong
Last Updated
8 years ago
License
Creative Commons CC BY 4.0
Abstract
get bibtex working on both in Overleaf (BibLaTeX) and Texmaker (MiKTeX, Apacite)
get bibtex working on both in Overleaf (BibLaTeX) and Texmaker (MiKTeX, Apacite)
% BEGIN -- SETUP DOCUMENT (OVERLEAF) --
\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage[backend=biber,style=apa]{biblatex}
\DeclareLanguageMapping{british}{british-apa}
\usepackage[pdftex]{graphicx}
\addbibresource{ref.bib}
\let\cite\parencite
\begin{document}
% END -- SETUP DOCUMENT (OVERLEAF) --
% BEGIN -- SETUP DOCUMENT (TEXMAKER) --
% \documentclass[a4paper,12pt]{article}
% \usepackage{hyperref}
% \usepackage{apacite}
% \begin{document}
% \bibliographystyle{apacite}
% END -- SETUP DOCUMENT (TEXMAKER) --
\title{ Overleaf to Texmaker Bibtex Template }
\author{Zhen Yong Lee}
\date{May 12, 2016}
\maketitle
\section{Literature Review}
\begin{enumerate}
\item \textbf{Bit Weaving} \cite{meiners_liu_torng_2012}: if match fields of two entries differ by only one bit and their action fields are same, these two entries can be merged.
\item \textbf{Dependent-set caching} \cite{katta_2014} : Each rule is assigned a ``cost'' corresponding to the number of rules that must be installed together and a ``weight'' corresponding to the number of packets expected to hit that rule. The current problem of maximizing the total weight can be formulated as a linear integer programming problem, where each rule has a variable indicating whether the rule is installed in the cache.
\end{enumerate}
\section{Research Methodology}
To verify our results, we will simulate real data center traffic by using ClassBench \cite{taylor_turner_2007}. ClassBench will be used to generate synthetic rule policy with a different type of packet classification; this will be implemented using C language.
\\\\
ClassBench is a good choice for simulating a near real data center environment. It generates synthetic rule policy with the desired rule number and dependency using a database from a real data center. In this simulation, we intend to take the standard policy Access Control List, IP Chain and Firewall from the seed files provided by ClassBench.
% BEGIN -- END DOCUMENT (OVERLEAF) --
\printbibliography
\end{document}
% END -- END DOCUMENT (OVERLEAF) --
% BEGIN -- END DOCUMENT (TEXMAKER) --
% \bibliography{ref}{}
% \end{document}
% END -- END DOCUMENT (TEXMAKER) --