Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Can I add Drop Caps to my manuscript in the Storyist program?

+1
−0

I have a manuscript that I'd like to add Drop Caps to at the beginning of each chapter. I currently have it loaded into my Storyist program on my Mac-book Pro.

Does anyone know how I'd go about adding my Drop-caps?

I can't seem to find any tools for this. I know it's not a common practice, and I know the Storyist program typically leans toward trimmed and well formatted manuscript style, so maybe I'll have to export my manuscript and tackle it in Pages. I'm not sure. Can anyone help?

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

This post was sourced from https://writers.stackexchange.com/q/20867. It is licensed under CC BY-SA 3.0.

0 comment threads

1 answer

+0
−0

Not quite, you can add Drop Caps to the CSS of the ePub file that Storyist generates for you

This Storyist forum gives an example of how to modify the CSS for your .ePub file (which is just a zip that you can unzip to see the individual files) to add Drop Caps:

Adding drop caps to the start of a paragraph

Another popular modification is to add drop caps to the first letter in a chapter. There are several ways to achieve this. If you're targeting iPad, the simplest way is to use the first-letter pseudo-class CSS selector as follows:

h1 > p:first-of-type::first-letter {
  font-size: 5em;
  float:left;
  line-hight: 0.5;
}

As the author mentions you should be comfortable with manually overwriting the CSS from the ePub file and you should check the result on the different readers where you intend to publish your work.

This is basically a workaround to change the standard layout in a not-intended way to match your specific preferences.


But beware that this seems to be discouraged by the community. See for example this Storyist forum (emphasis mine):

Unlike a print book with a set interior design, the point of eBooks is to be easy for the readers to manipulate for themselves. So the best eBook "formatting" is, in fact, doing as little hard formatting as possible—don't embed fonts, don't use drop caps, all the things that you' do in print. Keep your eBooks clean. Because not only does every reader like things differently, but different eReaders display things differently, too. So my Kindle Paperwhite uses a different font than iBooks, etc. And that's okay.


The standard doesn't allow this. There is no documentation for Storyist that would suggest that there is an in-built feature to change this setting and this StackExchange question is the first thing I can find when I google "Storyist Drop Caps", which suggests that there is not a high demand for this sort of workaround. Use with care.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »