是否有专门为排版圣经而设计的 LaTeX 包或样式,将圣经文本分为书籍、章节和诗句?
这个帖子包含几张来自《圣经》的精美图片,但我想知道是否有适合这种排版的软件包。
答案1
bibletext
自 2017-09-01 起,还存在一个名为 done by Camil Staps 的直接包,
http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/bibletext/bibletext.pdf
或bibleref.sty (1.24)
- 2019/12/10 Nicola Talbot 和 Maïeul Rouquette - 6 天前:
http://mirrors.ibiblio.org/CTAN/macros/latex/contrib/bibleref/bibleref.pdf
我觉得,通过几个链接的评论,可以创建一些圣经的步骤。我还建议这个链接展示使用 TeX 和朋友制作的精美排版
答案2
我已经发布了scripture
可以帮助排版圣经的包。
它主要用于制作引文,但可以作为排版整本圣经的基础。
该软件包提供了许多《圣经》中常见的功能,例如章节编号的下拉文本、诗句编号的上标、诗歌部分的缩进行、狭窄部分和悬挂段落。
可以按如下方式生成一段简单的圣经:
\documentclass[twocolumn,b5paper]{article}
\pagestyle{empty}
\usepackage{scripture}
\scripturesetup{
font=\small,
version=NIVUK
}
\begin{document}
\begin{scripture}[Isaiah 56:1--2]
\ch{56}This is what the \textsc{Lord} says:
\begin{poetry}
‘Maintain justice
and do what is right,
for my salvation is close at hand
and my righteousness will soon be revealed.
\vs{2}Blessed is the one who does this---
the person who holds it fast,
who keeps the Sabbath without desecrating it,
and keeps their hands from doing any evil.’
\end{poetry}
\end{scripture}
\end{document}