Noriyuki Abe
Noriyuki Abe
とりあえず`\DeclareFontShape@`の再定義に切り替えてみました( 1284baa ).本体の変更をおっかけないとならないのは変わらなそうなのでもっとさぼれないか考えてみます.
2についてです.[2d4eef4](https://github.com/abenori/jlreq/commit/2d4eef4bbdf67559a02990a61eeffa1cdcce7fd2) でコードを入れました.単にこれを使うだけだとリンクそのものが消えるだけですが,末尾をプリアンブルに入れておけば正しくリンクされると思います.縦書き時の脚注は偶数ページにしか出なかったり下段にしか出なかったりするので,場合によっては`\footnotemark`と`\footnotetext`に分割して処理されます.これをhyperrefはサポートしていないので,hyperrefマニュアルの11.6にあるようなコードを書く必要があります.しかし個別パッケージに対する処理を書きたくない(パッケージ更新に追随できる自身がないので)ので,それはユーザの方でやってもらう必要があります.その差分を書くのを少し楽にしてみた,というのが更新です. ```latex \makeatletter \renewcommand{\footnote}{\jlreq@footnote{\footnote}{\myfootnotemark}{\myfootnotetext}} \newcounter{mycounter} \newcommand{\myfootnotemark}[1][]{% \setcounter{mycounter}{\value{footnote}}% \setcounter{footnote}{\numexpr #1 - 1\relax}% \footnotemark \let\mysavedHref\Hy@footnote@currentHref \setcounter{footnote}{\value{mycounter}}% } \newcommand{\myfootnotetext}[2][]{% \edef\jlreq@result{% \unexpanded{\setcounter{mycounter}{\value{footnote}}}% \unexpanded{\setcounter{footnote}{#1}}% \unexpanded{\def\Hy@footnote@currentHref}{\expandonce{\mysavedHref}}% \unexpanded{\footnotetext{#2}}% \unexpanded{\setcounter{footnote}{\value{mycounter}}}% }% } \makeatother ```
3はちょっといったん諦めます.5は他のクラスファイルでも同じに見えるのでとりあえずそのまま.
I'm using `end_adjust` field in JFM with LuaTeX-ja to hang punctuation. Usually LuaTeX-ja takes account into this information when it breaks lines. However, at the end of the paragraph, `end_adjust`...
This is just a technical constraint. > Is there a way to hang punctuations at the end of the paragraph in LuaLaTeX? Perhaps modifying JFM may work, I'm not sure.
Thank you for the patch. If I'm not mistaken, this patch makes the width of `。`, `、`, etc. `0pt` and add a glue after these characters (like the current implementation...
実は`\jlreqsetup{itemization_labelsep={enumerate=1zw}}`とかけます.
Could you give me an example of the problem?
I used FZLanTingSong.ttf but I couldn't produce the problem. The code I tried is: ```latex \documentclass[lualatex,tate]{jlreq} \usepackage{luatexja-fontspec} \setmainjfont{FZLanTingSong.ttf} \begin{document} あ,い。 \end{document} ``` Probably the same problem happens with `ltjtarticle' class....
I saw that the placing of the brackets are strange. Perhaps `left' or `down' property in JFM is useful. (This may also can apply to punctures in `fzpingxiansong.ttf`.) Modifying the...