Plantilla general de LaTeX multifuncional
License: GPL3
ubuntu2004
<?xml version="1.0" standalone="yes"?>1<!-- logreq request file -->2<!-- logreq version 1.0 / dtd version 1.0 -->3<!-- Do not edit this file! -->4<!DOCTYPE requests [5<!ELEMENT requests (internal | external)*>6<!ELEMENT internal (generic, (provides | requires)*)>7<!ELEMENT external (generic, cmdline?, input?, output?, (provides | requires)*)>8<!ELEMENT cmdline (binary, (option | infile | outfile)*)>9<!ELEMENT input (file)+>10<!ELEMENT output (file)+>11<!ELEMENT provides (file)+>12<!ELEMENT requires (file)+>13<!ELEMENT generic (#PCDATA)>14<!ELEMENT binary (#PCDATA)>15<!ELEMENT option (#PCDATA)>16<!ELEMENT infile (#PCDATA)>17<!ELEMENT outfile (#PCDATA)>18<!ELEMENT file (#PCDATA)>19<!ATTLIST requests20version CDATA #REQUIRED21>22<!ATTLIST internal23package CDATA #REQUIRED24priority (9) #REQUIRED25active (0 | 1) #REQUIRED26>27<!ATTLIST external28package CDATA #REQUIRED29priority (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8) #REQUIRED30active (0 | 1) #REQUIRED31>32<!ATTLIST provides33type (static | dynamic | editable) #REQUIRED34>35<!ATTLIST requires36type (static | dynamic | editable) #REQUIRED37>38<!ATTLIST file39type CDATA #IMPLIED40>41]>42<requests version="1.0">43<internal package="biblatex" priority="9" active="0">44<generic>latex</generic>45<provides type="dynamic">46<file>plantilla.bcf</file>47</provides>48<requires type="dynamic">49<file>plantilla.bbl</file>50</requires>51<requires type="static">52<file>blx-dm.def</file>53<file>blx-compat.def</file>54<file>biblatex.def</file>55<file>standard.bbx</file>56<file>numeric.bbx</file>57<file>numeric.cbx</file>58<file>biblatex.cfg</file>59<file>spanish.lbx</file>60</requires>61</internal>62<external package="biblatex" priority="5" active="0">63<generic>biber</generic>64<cmdline>65<binary>biber</binary>66<infile>plantilla</infile>67</cmdline>68<input>69<file>plantilla.bcf</file>70</input>71<output>72<file>plantilla.bbl</file>73</output>74<provides type="dynamic">75<file>plantilla.bbl</file>76</provides>77<requires type="dynamic">78<file>plantilla.bcf</file>79</requires>80</external>81</requests>828384