diff options
author | Craig Earls <enderw88@gmail.com> | 2011-12-01 08:41:04 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-10 09:11:08 -1000 |
commit | e82c62260bfa2001eeba568a23285d24f915fe03 (patch) | |
tree | b18ab17fb0bcced8f0b6ec6de0f4289e81503cb2 | |
parent | a4dc37c55a0abb9996e24010db1ad6113095f9af (diff) | |
download | ledger-e82c62260bfa2001eeba568a23285d24f915fe03.tar.gz ledger-e82c62260bfa2001eeba568a23285d24f915fe03.tar.bz2 ledger-e82c62260bfa2001eeba568a23285d24f915fe03.zip |
Correct entry on grouping tags. Docs still had the old tag/pop syntax. Now they refer to the @tag .. @end tag
-rw-r--r-- | doc/ledger3.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/ledger3.texi b/doc/ledger3.texi index 196e5f93..4e1631be 100644 --- a/doc/ledger3.texi +++ b/doc/ledger3.texi @@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. @titlepage @title Ledger: Command-Line Accounting @subtitle For Version 3.0 of Ledger -@subtitle Draft Manual Time-stamp: <2011-11-30 16:33 (cpearls)> +@subtitle Draft Manual Time-stamp: <2011-12-01 08:37 (cpearls)> @author John Wiegley @end titlepage @@ -1923,21 +1923,21 @@ Metadata are normally strings, but you can create metadata of other types: @end smallexample (Note that this Date tag is not the same as the posting date.) -@cindex tags, pop +@cindex @@tag directive @cindex tags, applying to several transactions. -There are now tag/pop directives, to apply metadata to a range of -transactions (and their postings). For example, if you wanted a +You apply a tag or tags to a group of transactions by surrounding them with a @code{@@tag ... @@end tag} block. +For example, if you wanted a conceptual ``page'' of transactions relating to business trip to Chicago, you could do this: @smallexample - tag Location: Chicago - tag Purpose: Business + @@tag Location: Chicago + @@tag Purpose: Business ... transactions go here - pop - pop + @@end tag + @@end tag @end smallexample It would be as if you'd applied "; Location: Chicago", etc., to every transaction. |