this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Continue rapport

+10 -4
rapport/main.pdf

This is a binary file and will not be displayed.

+10 -4
rapport/main.typ
··· 67 67 #show ref: it => { 68 68 let eq = math.equation 69 69 let el = it.element 70 + let appendix_root = if el == none { 0 } else { counter("appendices").at(el.location()).at(0) } 70 71 if el != none and el.func() == eq { 71 72 // Override equation references. 72 73 numbering( 73 74 el.numbering, 74 75 ..counter(eq).at(el.location()) 75 76 ) 76 - } else if el != none and counter("appendices").at(el.location()).at(0) != 0 { 77 - let letter = el.numbering(counter("appendices").at(el.location()).at(0)) 78 - let heading_path = numbering(heading().numbering, counter(heading)).at(el.location()) 79 - [Annexe #path] 77 + } else if el != none and appendix_root != 0 { 78 + let letter = numbering(el.numbering, counter("appendices").at(el.location()).at(0)) 79 + let heading_path = numbering("1.1", ..counter(heading).at(el.location()).slice(1)) 80 + let path = letter + "." + heading_path 81 + if appendix_root == 1 { 82 + [preuve en #path] 83 + } else { 84 + [Annexe #path] 85 + } 80 86 } else { 81 87 it 82 88 }