【環境】
OS: Linux Mint 20.2(Uma) Cinnamon 64bit
Installed TeXLive packages: texlive-lang-japanese, texlive-luatex, etc...
LuaTeX: LuaTeX Version 1.10.0 (TeX Live 2019/Debian)
【問題】
LuaLaTeXのjlreqでの縦書きで、
参考文献の番号の括弧と数字の向きが、
右に90度回転してしまいます。
それらを縦にしたいです。
【コード】
--- ここから ---
\documentclass[lualatex,12pt,tate,book]{jlreq}
\usepackage{luatexja-ruby}
\begin{document}
\chapter{おわりに}
\begin{thebibliography}{50}
\bibitem[1]{book1}
奥村晴彦、黒木裕介『[改訂第八版]\LaTeXe 美文書作成入門』
(技術評論社、2020年)
\end{thebibliography}
\end{document}
--- ここまで ---
ご回答お願い申し上げます。
返信ありがとうございます。
\def\@biblabel#1{\tatechuyoko{[#1]}}
としても、過去の、
\def\@cite#1#2{\rensuji{[{#1\if@tempswa , #2\fi}]}}
\def\@biblabel#1{\rensuji{[#1]}}
としても、
! Use of \@ doesn't match its definition.
<argument> ...car \f@series \@nil \boldmath \fi \LaTeX \kern
.15em2$_{\textstyle \varep...
l.10 ...黒木裕介『[改訂第八版]\LaTeXe
美文書作成入門』
?
と出力されました。
パッケージを使わないで解決する方法は他にないでしょうかね。
[追記]
\LaTeXe
を
LaTeX2e
にしても、エラーは無くなりましたが向きが元通りでした。
\def\@biblabel#1{\tatechuyoko{[#1]}}
としても、過去の、
\def\@cite#1#2{\rensuji{[{#1\if@tempswa , #2\fi}]}}
\def\@biblabel#1{\rensuji{[#1]}}
としても、
! Use of \@ doesn't match its definition.
<argument> ...car \f@series \@nil \boldmath \fi \LaTeX \kern
.15em2$_{\textstyle \varep...
l.10 ...黒木裕介『[改訂第八版]\LaTeXe
美文書作成入門』
?
と出力されました。
パッケージを使わないで解決する方法は他にないでしょうかね。
[追記]
\LaTeXe
を
LaTeX2e
にしても、エラーは無くなりましたが向きが元通りでした。
\documentclass[lualatex,12pt,tate,book]{jlreq}
\usepackage{luatexja-ruby}
\makeatletter%% プリアンブルで定義する場合は必須
\def\@cite#1#2{\tatechuyoko{[{#1\if@tempswa , #2\fi}]}}
\def\@biblabel#1{\tatechuyoko{[#1]}}
\makeatother%% プリアンブルで定義する場合は必須
\begin{document}
\chapter{はじめに}
この本\cite{book1}は良い本だ。
\chapter{おわりに}
\begin{thebibliography}{50}
\bibitem[1]{book1}
奥村晴彦、黒木裕介『[改訂第八版]\LaTeXe 美文書作成入門』
(技術評論社、2020年)
\end{thebibliography}
\end{document}
\usepackage{luatexja-ruby}
\makeatletter%% プリアンブルで定義する場合は必須
\def\@cite#1#2{\tatechuyoko{[{#1\if@tempswa , #2\fi}]}}
\def\@biblabel#1{\tatechuyoko{[#1]}}
\makeatother%% プリアンブルで定義する場合は必須
\begin{document}
\chapter{はじめに}
この本\cite{book1}は良い本だ。
\chapter{おわりに}
\begin{thebibliography}{50}
\bibitem[1]{book1}
奥村晴彦、黒木裕介『[改訂第八版]\LaTeXe 美文書作成入門』
(技術評論社、2020年)
\end{thebibliography}
\end{document}