SPB Git

spb/wp7_uqo Public

UQO Working Paper No. 7 — Options-implied information for cross-asset return and volatility prediction: evidence from 3.8B option contracts.

Python 66.5% TeX 32.7% Makefile 0.8%
459 B · 20 lines make
Raw Blame History
1# =============================================================================2# Author: Simon-Pierre Boucher3# Contact: contact@spboucher.ai4# =============================================================================5TEX  = main6PDF  = $(TEX).pdf78.PHONY: all clean distclean910all: $(PDF)1112$(PDF): $(TEX).tex preamble.tex references.bib sections/*.tex appendix/*.tex13	latexmk $(TEX).tex1415clean:16	latexmk -c $(TEX).tex1718distclean:19	latexmk -C $(TEX).tex20