我正在寻找一款用于排版圣经引文的优秀软件包。有什么建议吗?
答案1
我最终使用了bibleref
、verse
和 ,attrib
如下所示:
\documentclass{article}
\usepackage{attrib}
\def\PreTrib{} \def\PostTrib{} % We'll do our own parens, thanks!
\usepackage{verse}
\usepackage{bibleref}
% Custom macros
\def\V#1 {\(^{#1}\)}
\def\vattrib#1#2{\attrib{(\bibleverse{#1}#2)}}
\begin{document}
\begin{verse}
\begin{altverse}
\V{9}
Who can say, I have made my heart clean, \\
I am pure from my sin?
\end{altverse}
\vattrib{Proverbs}{(20:9)}
\V{9}
The heart is deceitful above all things, \\
\vin and desperately wicked: \\
\vin who can know it?
\vattrib{Jeremiah}{(17:9)}
\end{verse}
\end{document}
不过,我对诗句编号的垂直对齐方式不太满意:我希望它们与顶部的大写字母齐平,但我认为这不tfm
包含正确执行此操作所需的字体指标。
答案2
这bibleref
包可能是一个选择。
答案3
我已经发布了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 \name{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}
答案4
我只是想分享一些很好的项目,它们可以以一种非常巧妙的方式共同实现你的目标。
- 圣经引文:它会自动允许您包括诗句的内容,见下面的例子。注意,它需要一个已修补版本的 Diatheke,希望补丁能很快合并到 Diatheke 中。
- 宣教:来自 SWORD 项目的一款应用程序,允许在控制台上查询圣经。
- 当然圣经参考,已经引用。
一个例子圣经引文使用:
\documentclass{article}
\usepackage{bibleref}
\usepackage{biblequote}
\begin{document}
As it is said in \bibleverse{Jn}(3:16-17):
\begin{quote}
\biblequote{Jn}{3:16-17}{KJV}
\end{quote}
\end{document}
您还可以将其包含在宏中以进行自定义样式设置。
我希望它有帮助。