commit bd0030a0cb66cd762403f87f8604e61e810c592d Author: Sheldon Lee Date: Wed Feb 9 11:07:33 2022 +0800 Initial commit. diff --git a/makefile b/makefile new file mode 100644 index 0000000..3f3f364 --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +NAME = paper +BIB = references + +.PHONY: all clean +all: $(NAME).pdf + +clean: + find ./ -type f -regex ".*/\($(NAME)\|$(BIB)\).*" ! -regex ".*/\($(NAME).tex\|$(BIB).bib\)" -exec rm '{}' \; + +$(NAME).pdf: $(NAME).tex $(BIB).bib + latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" $(NAME).tex + diff --git a/paper.tex b/paper.tex new file mode 100644 index 0000000..4a1174b --- /dev/null +++ b/paper.tex @@ -0,0 +1,18 @@ +\documentclass {article} + +\usepackage{natbib} + +\title{} +\date{} +\author{} + + +\begin {document} + +This is a document. + +%\bibliographystyle{apalike} +%\bibliography{references} + +\end {document} + diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..9b7fa21 --- /dev/null +++ b/references.bib @@ -0,0 +1,8 @@ +@article{azizah2012, + title = {Quality Management: From Effective Service to Innovative Facility}, + author = {Azizah, Rajab and Roziana, Shaari and Siti, Aisyah Panatik and Shah, Rollah Abdul Wahab and Hamidah, Abdul Rahman and Ishak and Mad, Shaha and Nor, Atikah Mat Ali}, + journal = {Procedia - Social and Behavioral Sciences}, + volume = {40}, + pages = {509-513}, + year = {2012} +}