adapted to the new production process
This commit is contained in:
parent
f529478935
commit
6de8509df4
@ -4,8 +4,6 @@
|
|||||||
% - public.tex (like submit.tex, but no financials either)
|
% - public.tex (like submit.tex, but no financials either)
|
||||||
\providecommand{\classoptions}{,keys} % to be overwritten in variants
|
\providecommand{\classoptions}{,keys} % to be overwritten in variants
|
||||||
\documentclass[RAM,gitinfo\classoptions]{dfgproposal}
|
\documentclass[RAM,gitinfo\classoptions]{dfgproposal}
|
||||||
%\documentclass[submit]{dfgproposal}
|
|
||||||
%\documentclass[submit,public]{dfgproposal}
|
|
||||||
\addbibresource{../lib/dummy}
|
\addbibresource{../lib/dummy}
|
||||||
\usepackage[utf8]{inputenc}
|
\usepackage[utf8]{inputenc}
|
||||||
\input{../lib/WApersons}
|
\input{../lib/WApersons}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
% the document class specification for the proposal writing process, add the 'submit' option
|
% The main file for developing the proposal.
|
||||||
% for submitting (switches off various draft features); add the 'public' option to exclude
|
% Variants with different class options are
|
||||||
% any private parts.
|
% - submit.tex (no draft stuff, no ednotes, no revision information)
|
||||||
\documentclass[RAM,noworkareas,gitinfo]{dfgproposal}
|
% - public.tex (like submit.tex, but no financials either)
|
||||||
%\documentclass[submit]{dfgproposal}
|
\providecommand{\classoptions}{,keys} % to be overwritten in variants
|
||||||
%\documentclass[submit,public]{dfgproposal}
|
\documentclass[RAM,gitinfo\classoptions]{dfgproposal}
|
||||||
\addbibresource{../lib/dummy}
|
\addbibresource{../lib/dummy}
|
||||||
\input{../lib/WApersons}
|
\input{../lib/WApersons}
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
###########################################################################
|
||||||
|
# Automating proposal management by make.
|
||||||
|
# The participants work on proposal.tex in "draft" mode, which gives a lot
|
||||||
|
# of information to the developers. Variants submit.tex and public.tex are
|
||||||
|
# used to prepare official versions (hiding development/private info).
|
||||||
|
###########################################################################
|
||||||
# possibly customize the following variables to your setting
|
# possibly customize the following variables to your setting
|
||||||
PROPOSAL = propB.tex # the proposal
|
PROPOSAL = propB.tex # the proposal
|
||||||
BIB = ../lib/dummy.bib # bibTeX databases
|
BIB = ../lib/dummy.bib # bibTeX databases
|
||||||
@ -14,7 +20,7 @@ PDATA = $(PROPOSAL:%.tex=%.pdata) # the proposal project data
|
|||||||
SRC = $(filter-out $(TARGET),$(shell ls *.tex)) # included files
|
SRC = $(filter-out $(TARGET),$(shell ls *.tex)) # included files
|
||||||
PDFLATEX = pdflatex -interaction batchmode -file-line-error
|
PDFLATEX = pdflatex -interaction batchmode -file-line-error
|
||||||
BBL.base = 1 2 3 4
|
BBL.base = 1 2 3 4
|
||||||
BBL = propB.bbl $(BBL.base:%=propB%-blx.bbl)
|
BBL = $(PROPOSAL:%.tex=%.bbl) $(BBL.base:%=$(PROPOSAL:%.tex=%)%-blx.bbl)
|
||||||
PROPCLS.dir = $(PROP.dir)/base
|
PROPCLS.dir = $(PROP.dir)/base
|
||||||
PROPETC.dir = $(PROP.dir)/etc
|
PROPETC.dir = $(PROP.dir)/etc
|
||||||
EUPROPCLS.dir = $(PROP.dir)/eu
|
EUPROPCLS.dir = $(PROP.dir)/eu
|
||||||
@ -27,8 +33,11 @@ PROPCLS = $(PROPCLS.clssty:%=$(PROPCLS.dir)/%) $(EUPROPCLS.clssty:%=$(EUPROPCLS.
|
|||||||
|
|
||||||
all: $(TBIB.pdf) $(TSIMP.pdf)
|
all: $(TBIB.pdf) $(TSIMP.pdf)
|
||||||
|
|
||||||
cd: # make cd will prepare CD for burning
|
submit:
|
||||||
mkdir CD;make $(TARGET.pdf); cp $(TARGET.pdf) CD
|
$(MAKE) -w PROPOSAL=final.tex all
|
||||||
|
|
||||||
|
public:
|
||||||
|
$(MAKE) -w PROPOSAL=public.tex all
|
||||||
|
|
||||||
bbl: $(BBL)
|
bbl: $(BBL)
|
||||||
$(BBL): %.bbl: %.aux
|
$(BBL): %.bbl: %.aux
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
% the document class specification for the proposal writing process, add the 'submit' option
|
% The main file for developing the proposal.
|
||||||
% for submitting (switches off various draft features); add the 'public' option to exclude
|
% Variants with different class options are
|
||||||
% any private parts.
|
% - submit.tex (no draft stuff, no ednotes, no revision information)
|
||||||
\documentclass[noworkareas,deliverables,gitinfo]{euproposal}
|
% - public.tex (like submit.tex, but no financials either)
|
||||||
%\documentclass[submit,noworkareas,deliverables]{euproposal}
|
\providecommand{\classoptions}{,keys} % to be overwritten in variants
|
||||||
%\documentclass[submit,public,noworkareas,deliverables]{euproposal}
|
\documentclass[noworkareas,deliverables,gitinfo,propB\classoptions]{euproposal}
|
||||||
%% TODO these don't work with WA (https://trac.kwarc.info/sTeX/ticket/1697)
|
|
||||||
%\usepackage[T1]{fontenc}
|
%\usepackage[T1]{fontenc}
|
||||||
%\usepackage[utf8]{inputenc}
|
%\usepackage[utf8]{inputenc}
|
||||||
\addbibresource{../lib/dummy}
|
\addbibresource{../lib/dummy}
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
###########################################################################
|
||||||
|
# Automating proposal management by make.
|
||||||
|
# The participants work on proposal.tex in "draft" mode, which gives a lot
|
||||||
|
# of information to the developers. Variants submit.tex and public.tex are
|
||||||
|
# used to prepare official versions (hiding development/private info).
|
||||||
|
###########################################################################
|
||||||
# possibly customize the following variables to your setting
|
# possibly customize the following variables to your setting
|
||||||
PROPOSAL = propB.tex # the proposal
|
PROPOSAL = propB.tex # the proposal
|
||||||
BIB = ../lib/dummy.bib # bibTeX databases
|
BIB = ../lib/dummy.bib # bibTeX databases
|
||||||
@ -27,8 +33,11 @@ PROPCLS = $(PROPCLS.clssty:%=$(PROPCLS.dir)/%) $(EUPROPCLS.clssty:%=$(EUPROPCLS.
|
|||||||
|
|
||||||
all: $(TBIB.pdf) $(TSIMP.pdf)
|
all: $(TBIB.pdf) $(TSIMP.pdf)
|
||||||
|
|
||||||
cd: # make cd will prepare CD for burning
|
submit:
|
||||||
mkdir CD;make $(TARGET.pdf); cp $(TARGET.pdf) CD
|
$(MAKE) -w PROPOSAL=final.tex all
|
||||||
|
|
||||||
|
public:
|
||||||
|
$(MAKE) -w PROPOSAL=public.tex all
|
||||||
|
|
||||||
bbl: $(BBL)
|
bbl: $(BBL)
|
||||||
$(BBL): %.bbl: %.aux
|
$(BBL): %.bbl: %.aux
|
||||||
|
@ -1,16 +1,14 @@
|
|||||||
% the document class specification for the proposal writing process, add the 'submit' option
|
% The main file for developing the proposal.
|
||||||
% for submitting (switches off various draft features); add the 'public' option to exclude
|
% Variants with different class options are
|
||||||
% any private parts.
|
% - submit.tex (no draft stuff, no ednotes, no revision information)
|
||||||
\documentclass[noworkareas,deliverables,gitinfo]{euproposal}
|
% - public.tex (like submit.tex, but no financials either)
|
||||||
%\documentclass[submit,noworkareas,deliverables]{euproposal}
|
\providecommand{\classoptions}{,keys} % to be overwritten in variants
|
||||||
%\documentclass[submit,public,noworkareas,deliverables]{euproposal}
|
\documentclass[noworkareas,deliverables,gitinfo,propB\classoptions]{euproposal}
|
||||||
%% TODO these don't work with WA (https://trac.kwarc.info/sTeX/ticket/1697)
|
|
||||||
%\usepackage[T1]{fontenc}
|
%\usepackage[T1]{fontenc}
|
||||||
%\usepackage[utf8]{inputenc}
|
%\usepackage[utf8]{inputenc}
|
||||||
\addbibresource{../lib/dummy}
|
\addbibresource{../lib/dummy}
|
||||||
\input{../lib/WApersons}% Some sections of the included files depend on this.
|
\input{../lib/WApersons}% Some sections of the included files depend on this.
|
||||||
|
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
\begin{center}\color{red}\huge
|
\begin{center}\color{red}\huge
|
||||||
This mock proposal is just an example for \texttt{euproposal.cls} it reflects the ICT
|
This mock proposal is just an example for \texttt{euproposal.cls} it reflects the ICT
|
||||||
|
Loading…
Reference in New Issue
Block a user