提升文本相对于行的位置

提升文本相对于行的位置

这是一件相对次要的事情,但在下表中,我想提高希伯来语相对于拉丁语字符的位置。感觉它们在每一行上的位置都太低了。有人能提供一些建议吗?

提前致谢,

詹姆士。

\documentclass[a4paper]{book}
\usepackage[english]{babel}
\usepackage{cjhebrew}
\usepackage{longtable}

\usepackage{array} % for ExtraRowHeight
\newcolumntype{L}{>{\raggedright\arraybackslash}}
\newcolumntype{R}{>{\raggedleft\arraybackslash}}
\newcolumntype{C}{>{\centering\arraybackslash}}

\begin{document}

\Large
\fontfamily{bch}
\selectfont

\linespread{1.06}
\begin{longtable}{Lp{1cm}Rp{4.6cm}Lp{9.2cm}}

1.1 & \cjRL{b*i+s:nat +sAlwo+s l:mal:kw*t y:hwoyAqiyM mElEK:--y:hw*dAh b*A' n:bw*kad:nE'.s*ar mElEK:--b*AbEl y:rw*+sAlaiM way*A.sar `AlEyhA;} & In the 3\textsuperscript{rd} year of the reign of Jehoiakim (the King of Judah), Nebuchadnezzar (the King of Babylon) came {[}to{]} Jerusalem and laid siege to it, \\
1.2 & \cjRL{way*it*eN 'a:donAy b*:yAdwo 'Et--y:hwoyAqiyM mElEK:--y:hw*dAh w*miq:.sAt k*:ley beyt--hA'E:lohiyM way:biy'eM 'ErE.S--+sin:`Ar b*eyt 'E:lohAyw w:'Et--hak*eliyM hebiy' b*eyt 'wo.sar 'E:lohAyw;} & and the Lord gave Jehoiakim (the King of Judah) into his hand, together with odds-and-ends from the vessels\textmd{\footnote{lit., `from the end of the vessels'; colloq., `part of the vessels'}} of the House of God.\space\space {[}Nebuchadnezzar{]} brought them {[}both to{]} the Land of Shinar, {[}to{]} the house of \textit{his} god, where he brought the vessels into his god's treasure-house. \\

\end{longtable}

\end{document}

答案1

这不是对字体的一般更改,而只是针对这种特殊longtable情况。我介绍\shcjRL在调用之前在垂直空间中向上移动 1pt \cjRL。它假设在段落开头进行调用,这适用于这种情况。

\documentclass[a4paper]{book}
\usepackage[english]{babel}
\usepackage{cjhebrew}
\usepackage{longtable}
\def\shcjRL#1{\vspace{\dimexpr-\normalbaselineskip-1pt}\par\cjRL{#1}}

\usepackage{array} % for ExtraRowHeight
\newcolumntype{L}{>{\raggedright\arraybackslash}}
\newcolumntype{R}{>{\raggedleft\arraybackslash}}
\newcolumntype{C}{>{\centering\arraybackslash}}

\begin{document}

\Large
\fontfamily{bch}
\selectfont

\linespread{1.06}
\begin{longtable}{Lp{1cm}Rp{4.6cm}Lp{9.2cm}}

1.1 & \shcjRL{b*i+s:nat +sAlwo+s l:mal:kw*t y:hwoyAqiyM mElEK:--y:hw*dAh b*A' n:bw*kad:nE'.s*ar mElEK:--b*AbEl y:rw*+sAlaiM way*A.sar `AlEyhA;} & In the 3\textsuperscript{rd} year of the reign of Jehoiakim (the King of Judah), Nebuchadnezzar (the King of Babylon) came {[}to{]} Jerusalem and laid siege to it, \\
1.2 & \shcjRL{way*it*eN 'a:donAy b*:yAdwo 'Et--y:hwoyAqiyM mElEK:--y:hw*dAh w*miq:.sAt k*:ley beyt--hA'E:lohiyM way:biy'eM 'ErE.S--+sin:`Ar b*eyt 'E:lohAyw w:'Et--hak*eliyM hebiy' b*eyt 'wo.sar 'E:lohAyw;} & and the Lord gave Jehoiakim (the King of Judah) into his hand, together with odds-and-ends from the vessels\textmd{\footnote{lit., `from the end of the vessels'; colloq., `part of the vessels'}} of the House of God.\space\space {[}Nebuchadnezzar{]} brought them {[}both to{]} the Land of Shinar, {[}to{]} the house of \textit{his} god, where he brought the vessels into his god's treasure-house. \\

\end{longtable}

\end{document}

在此处输入图片描述

相关内容