Changes between Version 21 and Version 22 of Taskforces/CMDI/BestPracticesEditing


Ignore:
Timestamp:
10/26/18 12:54:11 (6 years ago)
Author:
Twan Goosen
Comment:

updated editing instructions for latex/overleaf

Legend:

Unmodified
Added
Removed
Modified
  • Taskforces/CMDI/BestPracticesEditing

    v21 v22  
    2626
    2727}}}
     28
     29== Draft mode ==
     30
     31The guide can be compiled with draft mode either enabled or disabled. To toggle draft mode, change the following line in the MASTER file:
     32
     33{{{
     34#!tex
     35\setboolean{bpdraft}{true}
     36}}}
     37
     38or
     39
     40{{{
     41#!tex
     42\setboolean{bpdraft}{false}
     43}}}
     44
     45(default is `false`)
     46
     47== Work in progress ==
     48Sections that are work in progress can be marked as such which causes them to be visually marked as work in progress in draft mode, and omitted if the document is compiled in on-draft mode. To do so, wrap the content in a `workinprogress` block. For example:
     49
     50{{{
     51#!tex
     52\begin{workinprogress}
     53\section{My work in progress section}
     54...
     55\end{workinprogress}
     56}}}