We use a notation in which a list of formulas bulleted by /\ or \/ denotes the conjunction or disjunction of the formulas, and indentation is used to eliminate parentheses. It will always be clear from context whether a /\ or \/ is being used in this way, or as a regular infix operator. For example
  /\ \/ A
     \/ B /\ C
  /\ D
  /\ \/ E     
     \/ F
equals
  (A \/ (B /\ C)) /\ D /\ (E \/ F)