ddevec / latex_tools

Useful tools for writing CS conference publications in latex.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Purpose

This repository is intended to hold files generic to paper writing. Some files include:

  • full.bib
  • Generic Makefile
  • Latex Templates

Usage

This file holds a generic makefile (Makefile), to use that makefile, add this repository as a submodule of your repository and make a makefile similar to below:

PAPERNAMES=paper

TEXOUTDIR=$(abspath out)

.PHONY: all
all: paper.pdf

include latex_tools/Makefile

.PHONY: clean
clean: latex_clean

The resulting makefile will automatically detect dependencies and do incremental builds to build paper.pdf from "paper.tex".

About

Useful tools for writing CS conference publications in latex.


Languages

Language:TeX 99.9%Language:Makefile 0.1%