:(
Below layout is nicer, but has two problems:
1. The page break logic seems to be broken. Some pages have content run
off the bottom. Other pages get a single line. This seems to be a
bug in the wrapstuff package.
2. There's a problem I don't understand where LaTeX complains about the
\wrapstuffclear following a \footnote, saying:
! LaTeX kernel Error: Not in vertical mode.
Starting a paragraph with \RawIndent or \RawNoindent
(or \para_raw_indent: or \para_raw_noindent:) is only allowed
if LaTeX is in vertical mode.
Two problems
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 ' +
from testing.fakeserver import FakeGlowficServer
from fetch import DirectFetcher, FakeFetcher, Fetcher
-from glowfic import ContentOnlyLayout, BelowIconLayout
+from glowfic import ContentOnlyLayout, BesideIconLayout
from images import FakeImageStore
from spec import Spec
from texify import DirectTexifier, PandocTexifier, VerifyingTexifier
lambda x: x,
lambda x: None,
lambda x: x,
- BelowIconLayout(PandocTexifier('pandoc'), 20),
+ BesideIconLayout(PandocTexifier('pandoc'), 20),
None,
out,
lambda _: None)