*** empty log message ***

This commit is contained in:
John Wiegley 2003-10-10 19:12:31 +00:00
parent 0d4fc1b5d6
commit a39dfa95fd
2 changed files with 28 additions and 11 deletions

View file

@ -1,5 +1,5 @@
\input texinfo @c -*-texinfo-*- \input texinfo @c -*-texinfo-*-
@comment $Id: ledger.texi,v 1.10 2003/10/10 19:07:26 johnw Exp $ @comment $Id: ledger.texi,v 1.11 2003/10/10 19:12:31 johnw Exp $
@comment %**start of header @comment %**start of header
@setfilename ledger.info @setfilename ledger.info
@ -31,9 +31,9 @@
@end ifnottex @end ifnottex
@menu @menu
* Introduction:: * Introduction::
* Keeping a ledger:: * Keeping a ledger::
* Computing Huqúqu'lláh:: * Using GnuCash to Keep Your Ledger::
@end menu @end menu
@node Introduction, Keeping a ledger, Top, Top @node Introduction, Keeping a ledger, Top, Top
@ -145,7 +145,7 @@ Your usage of @code{ledger} will have two parts: Keeping the ledger,
and using the @code{ledger} tool to provide you with information and using the @code{ledger} tool to provide you with information
summaries derived from your ledger's entries. summaries derived from your ledger's entries.
@node Keeping a ledger, Computing Huqúqu'lláh, Introduction, Top @node Keeping a ledger, Using GnuCash to Keep Your Ledger, Introduction, Top
@chapter Keeping a ledger @chapter Keeping a ledger
The most important part of accounting is keeping a good ledger. If The most important part of accounting is keeping a good ledger. If
@ -201,10 +201,11 @@ For this entry, @code{ledger} will figure out that $-23.00 must come
from ``Assets:Checking'' in order to balance the entry. from ``Assets:Checking'' in order to balance the entry.
@menu @menu
* Credits and Debits:: * Credits and Debits::
* Commodities and Currencies:: * Commodities and Currencies::
* Accounts and Inventories:: * Accounts and Inventories::
* Understanding Equity:: * Understanding Equity::
* Automated transactions::
@end menu @end menu
@node Credits and Debits, Commodities and Currencies, Keeping a ledger, Keeping a ledger @node Credits and Debits, Commodities and Currencies, Keeping a ledger, Keeping a ledger
@ -410,7 +411,7 @@ would look like:
Now you've turned 2 steaks into 15 gold, courtesy of your customer, Now you've turned 2 steaks into 15 gold, courtesy of your customer,
Sturm Brightblade. Sturm Brightblade.
@node Understanding Equity, , Accounts and Inventories, Keeping a ledger @node Understanding Equity, Automated transactions, Accounts and Inventories, Keeping a ledger
@section Understanding Equity @section Understanding Equity
The most confusing entry in any ledger will be your equity The most confusing entry in any ledger will be your equity
@ -547,14 +548,29 @@ When balances are displayed, virtual transactions will be factored in.
To view balances without any virtual balances factored in, using the To view balances without any virtual balances factored in, using the
@samp{-R} flag, for ``Reality''. @samp{-R} flag, for ``Reality''.
@menu
* Saving for a Special Occasion::
* Keeping a Budget::
* Tracking Allocated Funds::
@end menu
@node Saving for a Special Occasion, Keeping a Budget, Understanding Equity, Understanding Equity
@subsection Saving for a Special Occasion @subsection Saving for a Special Occasion
@node Keeping a Budget, Tracking Allocated Funds, Saving for a Special Occasion, Understanding Equity
@subsection Keeping a Budget @subsection Keeping a Budget
@node Tracking Allocated Funds, , Keeping a Budget, Understanding Equity
@subsection Tracking Allocated Funds @subsection Tracking Allocated Funds
@node Automated transactions, , Understanding Equity, Keeping a ledger
@section Automated transactions @section Automated transactions
@menu
* Computing Bahá'í Huqúqu'lláh::
@end menu
@node Computing Bahá'í Huqúqu'lláh, , Automated transactions, Automated transactions
@subsection Computing Bahá'í Huqúqu'lláh @subsection Computing Bahá'í Huqúqu'lláh
As a Bahá'í, I need to compute Huqúqu'lláh on some of my assets. The As a Bahá'í, I need to compute Huqúqu'lláh on some of my assets. The
@ -601,6 +617,7 @@ ledger data, type:
/home/johnw $ ledger -f ledger.dat balance ^huquq /home/johnw $ ledger -f ledger.dat balance ^huquq
@end example @end example
@node Using GnuCash to Keep Your Ledger, , Keeping a ledger, Top
@chapter Using GnuCash to Keep Your Ledger @chapter Using GnuCash to Keep Your Ledger
The @code{ledger} tool is fast and simple, but it gives you no special The @code{ledger} tool is fast and simple, but it gives you no special

View file

@ -237,7 +237,7 @@ void print_register(const std::string& acct_name, std::ostream& out,
xact_str = "(Splits...)"; xact_str = "(Splits...)";
out.width(22); out.width(22);
out << std::left << truncated(xact_str(), 22) << " "; out << std::left << truncated(xact_str, 22) << " ";
out.width(12); out.width(12);
out << std::right << street->as_str(true); out << std::right << street->as_str(true);