exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

lib.typ (463B)


      1 // Helper function for checkbox
      2 #let checkbox(checked) = {
      3   box(
      4     width: 3mm,
      5     height: 3mm,
      6     stroke: 0.5pt + black,
      7     inset: 0.3mm,
      8     if checked == true or checked == "true" {
      9       place(center + horizon, text(size: 8pt, sym.checkmark))
     10     }
     11   )
     12 }
     13 
     14 #let talerlogo() = {
     15   image("taler-logo.svg", width: 80%)
     16 }
     17 
     18 #let vqflogo() = {
     19   image("vss_vqf_verein.png", width: 80%)
     20 }
     21 
     22 #let pointingfinger() = {
     23   image("pointing_finger.svg", height: 2em)
     24 }