View Single Post
Old 05-18-2020, 10:06 AM   #5
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,827
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
** WARNING ** The solution doesn't work for the KF7 format, but should work for .kf8 and .KFX and ADE.

In your .xhtml file write the following:

Code:
  <p>This is the lengthy prayer that will be followed by a versicle and response. It is flush left because I did not set a hanging indent.</p>

  <p class="hanging">V.<span class="preserve">&#x2002;&#x2002;&#x2002;&#x2002;</span>This is the versicle. Observe how, apart from the V. tag, the left margin is flush. In Microsoft Word, this is achieved by setting a hanging indent, typing "V.", and then pressing "tab."</p>

  <p class="hanging italic">R.<span class="preserve">&#x2002;&#x2002;&#x2002;&#x2002;</span>This is the response. It, too, has a flush left margin.</p>
And in your .css file write:

Code:
p {
   text-indent: 0;
   text-align: justify;
}

.hanging {
   text-indent: -3em;
   margin-left: 3em;
}

.italic {
   font-style: italic;
}

.preserve {
   white-space: pre;
}
Here you can see how it looks as .KFX:

Click image for larger version

Name:	Image1.png
Views:	641
Size:	83.8 KB
ID:	179326

and here as .epub:

Click image for larger version

Name:	Image2.png
Views:	631
Size:	63.6 KB
ID:	179327

I can't attach the .kfx output but is ok. Below you can check the respective .epub.

Regards
Rubén

PS: Note to the administers of the site: maybe could be a good idea to allow to upload .kfx files. I wanted to upload one, and I receive the message of format not allowed.
Attached Files
File Type: epub Hanging text.epub (2.3 KB, 368 views)

Last edited by RbnJrg; 05-18-2020 at 10:09 AM.
RbnJrg is online now   Reply With Quote