default=20)
parser.add_argument(
'--layout',
- default='below',
+ default='beside',
help='Whether to put character and author information `beside` or `below` the icon ' +
- '(default: below)')
+ '(default: beside)')
parser.add_argument(
'--out',
help='The filename stem at which to write output ' +
layout = BesideIconLayout(texifier, args.image_size)
else:
raise ValueError(f'Unknown layout: {args.layout}')
- with CachingFetcher(args.cache_path, args.timeout) as fetcher:
+ log = (lambda _: None) if args.quiet else _print_status
+ with CachingFetcher(args.cache_path, args.timeout, log) as fetcher:
with open(args.out + '.tex', 'wb') as texout:
yield Spec(
args.url,
layout,
args.geometry,
texout,
- (lambda _: None) if args.quiet else _print_status)
+ log)