-
Notifications
You must be signed in to change notification settings - Fork 8
FAQ
This page gives solutions to some frequently asked questions, and common problems:
Scene numbers are added to production scripts, simply add --production
or -p
to you command.
Wrap is designed to easily fit in the usual workflow where most of your writing happens during the spec phase of you script where scene numbers are usually omitted.
You can either specify the page size via the --page-size
flag, e.g. wrap pdf --page-size a4 MyScript.wrap
. Or by adding a field to the title page section of your document, e.g. PageSize: letter
.
For the best results Wrap uses Courier Prime by Alan Dague-Greene, which you can download for free from the Quote-Unquote Apps's website.
If we don't find said font we fall back on Courier New and finally GNU FreeFont FreeMono, and give a warning about the fonts not being available.
Alternatively you can specify your own typeface using the --font
flag.
Wrap supports piping so on Linux and macOS you can simply use cat
, eg.
cat scene1.wrap scene2.wrap | wrap pdf -o myScript.pdf
On non-unix platforms you could install a cat
analogue or first use a tool that joins text files.
Wrap searches for the specified font files in the current working directory and system folders where fonts are usually installed.
We use Unicode throughout the program so Fountain/Wrap files with non ASCII characters will be processed fine, however when exporting to PDF, Wrap uses Courier Prime by default which does not support non-Latin alphabets. Luckily there are solutions for most left to right languages:
If you use the Cyrillic alphabet you can use the adapted Courier Prime by Dmitry Novikov http://dimkanovikov.pro/courierprime/.
When the language you speak uses the Greek alphabet you can use the flags --use-courier-new
or --use-freemono
to use one of those typefaces. Alternatively you can select your own font using the --font
flag.
If you speak a RTL language Wrap is not recommended as it will always set text LTR.
Of course, simply add ContdTag: (cont'd)
to the title page section of your script.
You can change those tags by adding ContdTag
and MoreTag
fields respectively to the title page, eg.
ContdTag: (SUITE)
MoreTag: (PLUS)
Note that French is supported and that the same result could be achieved by adding Language: French
instead.