lgram

A command-line utility for drilling Latin grammar.
git clone git://git.jtobin.io/lgram.git
Log | Files | Refs | README

README.md (704B)


      1 # lgram
      2 
      3 Drill Latin grammar.
      4 
      5 ## Clone
      6 
      7 ```
      8 git clone git://git.jtobin.io/lgram.git
      9 ```
     10 
     11 ## Run
     12 
     13 To drill conjugations, use:
     14 
     15 ```
     16 ./conj
     17 ```
     18 
     19 Filter the set of conjugations to drill by appending keywords as arguments.
     20 E.g.:
     21 
     22 ```
     23 ./conj coniūnctīvus āctivum
     24 ```
     25 
     26 to drill only conjugations in *both* the active voice *and* with subjunctive
     27 mood. You can use pipes for logical disjunction. E.g.:
     28 
     29 ```
     30 ./conj "coniūnctīvus|āctivum"
     31 ```
     32 
     33 to drill only conjugations in *either* the active voice *or* with
     34 subjunctive mood.
     35 
     36 To drill declensions, use:
     37 
     38 ```
     39 ./decl
     40 ```
     41 
     42 It can be filtered on analogously, e.g.:
     43 
     44 ```
     45 ./decl "dēclīnātiō I|dēclīnātiō II" nomina singulāris
     46 ```
     47 
     48 Press 'q' to quit.
     49