diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2021-03-07 06:05:59 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2021-03-07 06:05:59 +0100 |
commit | 9318cf9302ecefccd7cff8461439c965b1e1edc8 (patch) | |
tree | 3743b960df6e75c920171592d1ed0a6339f9dac4 /yaac-another-awesome-cv/example/cv.run.xml | |
parent | 617192d5107af675fdf27462e21f60c8459b2c5e (diff) | |
download | cv-9318cf9302ecefccd7cff8461439c965b1e1edc8.tar.gz cv-9318cf9302ecefccd7cff8461439c965b1e1edc8.tar.bz2 cv-9318cf9302ecefccd7cff8461439c965b1e1edc8.tar.xz cv-9318cf9302ecefccd7cff8461439c965b1e1edc8.zip |
First draft of scientific CV
Diffstat (limited to 'yaac-another-awesome-cv/example/cv.run.xml')
-rw-r--r-- | yaac-another-awesome-cv/example/cv.run.xml | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/yaac-another-awesome-cv/example/cv.run.xml b/yaac-another-awesome-cv/example/cv.run.xml new file mode 100644 index 0000000..082eb10 --- /dev/null +++ b/yaac-another-awesome-cv/example/cv.run.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" standalone="yes"?> +<!-- logreq request file --> +<!-- logreq version 1.0 / dtd version 1.0 --> +<!-- Do not edit this file! --> +<!DOCTYPE requests [ + <!ELEMENT requests (internal | external)*> + <!ELEMENT internal (generic, (provides | requires)*)> + <!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)> + <!ELEMENT cmdline (binary, (option | infile | outfile)*)> + <!ELEMENT input (file)+> + <!ELEMENT output (file)+> + <!ELEMENT provides (file)+> + <!ELEMENT requires (file)+> + <!ELEMENT generic (#PCDATA)> + <!ELEMENT binary (#PCDATA)> + <!ELEMENT option (#PCDATA)> + <!ELEMENT infile (#PCDATA)> + <!ELEMENT outfile (#PCDATA)> + <!ELEMENT file (#PCDATA)> + <!ATTLIST requests + version CDATA #REQUIRED + > + <!ATTLIST internal + package CDATA #REQUIRED + priority (9) #REQUIRED + active (0 | 1) #REQUIRED + > + <!ATTLIST external + package CDATA #REQUIRED + priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED + active (0 | 1) #REQUIRED + > + <!ATTLIST provides + type (static | dynamic | editable) #REQUIRED + > + <!ATTLIST requires + type (static | dynamic | editable) #REQUIRED + > + <!ATTLIST file + type CDATA #IMPLIED + > +]> +<requests version="1.0"> + <internal package="biblatex" priority="9" active="0"> + <generic>latex</generic> + <provides type="dynamic"> + <file>cv.bcf</file> + </provides> + <requires type="dynamic"> + <file>cv.bbl</file> + </requires> + <requires type="static"> + <file>blx-dm.def</file> + <file>blx-compat.def</file> + <file>biblatex.def</file> + <file>authoryear.bbx</file> + <file>standard.bbx</file> + <file>authoryear.cbx</file> + <file>biblatex.cfg</file> + <file>french.lbx</file> + <file>english.lbx</file> + </requires> + </internal> + <external package="biblatex" priority="5" active="0"> + <generic>biber</generic> + <cmdline> + <binary>biber</binary> + <infile>cv</infile> + </cmdline> + <input> + <file>cv.bcf</file> + </input> + <output> + <file>cv.bbl</file> + </output> + <provides type="dynamic"> + <file>cv.bbl</file> + </provides> + <requires type="dynamic"> + <file>cv.bcf</file> + </requires> + <requires type="editable"> + <file>sample.bib</file> + </requires> + </external> +</requests> |