Initial commit.

This commit is contained in:
Sheldon Lee 2022-02-09 11:07:33 +08:00
commit bd0030a0cb
3 changed files with 38 additions and 0 deletions

12
makefile Normal file
View File

@ -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

18
paper.tex Normal file
View File

@ -0,0 +1,18 @@
\documentclass {article}
\usepackage{natbib}
\title{}
\date{}
\author{}
\begin {document}
This is a document.
%\bibliographystyle{apalike}
%\bibliography{references}
\end {document}

8
references.bib Normal file
View File

@ -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}
}