Home / Blog Menu ↓

Blog: #scriptures

44 posts / tag feed / about the blog / archive / tags

Book of Mormon study edition 2.0

I’m pleased to announce version 2.0 of my Book of Mormon study edition.

study-edition-eng-bofm-00.jpg

This version now uses the licensed text of the scriptures from the Church, which means I’m finally able to make editions in other languages. To start out, we’ve got French, German, Italian, Portuguese, and of course Spanish.

study-edition-spa-bofm-02.png

To make it easier to create versions of the study edition in other languages, I started over from scratch, using a set of Python scripts to pull the text from the files the Church sent me, then generate a LaTeX document that gets turned into the PDF. It’s a really nice workflow.

study-edition-eng-bofm-01.png

Over the next month or so I’ll be revising several of my other scriptures projects (reader’s edition, Words of the Prophets, etc.) to use the licensed text, with a similar Python-based workflow to make updates easier.

Also, if you’re interested in a study edition in a new language, let me know.


Reply via email or office hours

Old and New Testaments in JSON

Scriptures in JSON

The JSON versions of the Old and New Testaments are now available.

Also, I’ve compared all five standard works against the text on LDS.org and have fixed dozens of typos, a list of which you can see in the README changelog. (I had mistakenly assumed that my source text had been corrected, but that doesn’t seem to be the case.) None of the typos were doctrinal in nature — they’re all minor typographical fixes — but I recommend updating nonetheless.


Reply via email or office hours

Updated scriptures in JSON

There are now two new editions of the scriptures in JSON: flat and reference.

The flat edition is a flattened list of verses which makes it easier to iterate through the text for textual analysis and similar applications.

The reference edition structures the text so that it’s easily accessible via key: data['1 Nephi']['3']['7'], for example. (Thanks to Jon Faulkenberry for the recommendation.)

In the repo there are also the two Python scripts that I used to generate the new editions from the base edition.

Old and New Testaments are still forthcoming.


Reply via email or office hours

More scriptures in JSON

Scriptures in JSON

The JSON versions of the Doctrine & Covenants and the Pearl of Great Price are now available.

With the D&C, I opted to use section instead of chapter, which does mean a little inconsistency for scripts that use these JSON files, but it seemed better to be consistent with the source material.

With the Book of Abraham facsimiles in the Pearl of Great Price, I’m using the URLs to the images on LDS.org. (I don’t think I want to try to embed the images themselves.)

Old and New Testaments forthcoming.


Reply via email or office hours

Book of Mormon in JSON

Scriptures in JSON

I’ve released a JSON version of the Book of Mormon. Also available on GitHub.

Note: there’s an existing JSON version at the Mormon Documentation Project, but it has some unnecessary content (database IDs, duplicate info, etc.) and isn’t structured hierarchically. I did however use the MDP SQLite file to extract the text for this, then added additional content (title page, the book/chapter headings that were in the original text, testimonies) and made the changes from the 2013 edition.

Anyway, enjoy. I plan to do the same thing with the other volumes in the standard works. I’m also planning an expanded version of the Book of Mormon with extra metadata (people and places mentioned in each verse, author of the verse, etc.).


Reply via email or office hours

Scriptures in Word

At someone’s request, I recently put together Microsoft Word editions of the LDS standard works, for use as study aids. (The person who requested it is using Word to highlight, annotate, and add footnotes/endnotes.) Verse numbers are included.

Process (for the curious)

I downloaded an SQLite version of the scriptures and wrote a Python script to extract the text in the right order, with markers for the headings. I then copied and pasted the whole thing into Word.

In Word, I did some wildcard-based find-and-replacing to remove the heading markers and apply the appropriate styles, and then I added a hanging indent so the verse numbers are less obtrusive.


Reply via email or office hours

Book of Mormon reader’s edition WIP

I’m currently retypesetting the print edition of my Book of Mormon reader’s edition. The 2006 edition was one of the first books I ever typeset, and my skills then were, well, limited. (Because now they are unlimited. I jest.)

Here’s a glimpse at 3 Nephi 5 (which is normally 3 Nephi 11, but in this edition I use the chapter breaks from the first edition of the Book of Mormon):

bom-retypeset.png

I’m using Arno 11/14 for the body text, and the paperback will be available at cost via CreateSpace. The good news with the move to CreateSpace is that the book will only cost around $9 instead of the $18 it is at Lulu. (And I should add that I make no profit on these, nor do I want to.)

I will also be typesetting a matching, combined reader’s edition of the D&C and Pearl of Great Price. And after that, I’ll be doing a study edition of the D&C and Pearl of Great Price, as a companion piece to the Book of Mormon study edition.


Reply via email or office hours

Book of Mormon study edition: Lulu

Just a quick note: I’ve finished retypesetting the study edition of the Book of Mormon, and you can now get it on Lulu for $20.45 plus shipping (at cost with one penny profit to make it trackable). The PDF—which is 448 pages now, down from the original 538—is also available for free download.

Disclaimer: I haven’t ordered one myself, so it’s possible that something may be wonky. (Explanation of disclaimer: I don’t quite trust Lulu’s system for uploading and printing covers. It’s possible that the text on the cover might not be quite centered. But the body of the book should be just fine.)


Reply via email or office hours

Book of Mormon study edition

Book of Mormon: Study Edition

It’s taken me two years to stop procrastinating this project, but I’m pleased to (finally) announce that my study edition of the Book of Mormon is done and available for free download as PDF.

The goal with this edition was to make something you can print out and write on, with large outside margins and somewhat generous line spacing so there’s plenty of room for notes. I’ve also pulled the verse numbers out to the side and faded them out a little so they’re less distracting.

I originally planned to release a Lulu edition as well, but it’s a bit of a hassle, so I’m just releasing the PDF. If someone wants to put this up on Lulu, though, they’re welcome to. (By “Lulu edition,” I mean a print-on-demand, bound copy you can order online, rather than printing the PDF out yourself or at a copy shop.)

Update: I’ve decided to do a Lulu edition after all. It’s going to take some retypesetting to get the book to fit within Lulu’s coil-binding page limit, but I’ll post again when it’s ready.

Also, I’ve decided I don’t care about (typographic) widows or orphans. Maybe I should, but they don’t bother me when reading, and the aesthetic benefit gained by removing them is minimal at best (to my eye). So yes, this PDF is a orphanage. And I’m okay with that.


Reply via email or office hours

General Conference scripture references

At the request of one of my Twitter friends, I’ve thrown together a quick script to go through the conference transcripts (available as of today) and make a list of all the scriptures cited.

If a talk shows up more than once for a given passage, that’s because the talk cites that passage more than once.

Yes, scriptures.byu.edu does this, but it takes some time for new transcripts to get added to their index. This is a stopgap solution for the interim.

The code (a Python script) is available on GitHub as usual.


Reply via email or office hours