jumoline.sty

LaTeX文書で複数行にわたって下線を引きたい場合はjumoline.styを使うべし.GitHubにソースもある(https://github.com/kmuto/pandoc2review/blob/main/samples/reviewsample/sty/jumoline.sty)し,ダウンロードもできる.これをスタイルファイルの入ったディレクトリへコピーしてコマンドmktexlsrを実行する.以下はホームディレクトリ~にjumoline.styがあった場合のdebian 12の例.
$ sudo cp -i ~/jumoline.sty /usr/share/texlive/texmf-di
st/tex/latex/tools/
$ sudo mktexlsr
これでプリアンブルに
\usepackage{jumoline}
を追記すれば,地の文で
\Underline{下線を引く.下線を引く.下線を引く.下線を引く.
下線を引く.下線を引く.下線を引く.下線を引く.下線を引く.
下線を引く.下線を引く.下線を引く.下線を引く.下線を引く.
下線を引く.下線を引く.}
としても,複数行にまたがった下線が引かれる.

2024.9.22追記:\Underline{}内に数式モードが含まれるとエラーが発生するようだ.

HEICファイルをJPGファイルまたはPNGファイルにするには?

 ubuntu系であればheif-convertを使うらしい.詳しくは以下を参照.

 https://virment.com/install-libheif-to-convert-heic-to-jpg/

TikZ(「ティクス」と読む?)

TeX文書内でグラフや図形を描画するためのパッケージです.プリアンブルにて
\usepackage{tikz}
とすると使えます.基本的な使い方は
 \begin{tikzpicture}[環境オプション]
  コマンド;
  コマンド;
	…;
\end{tikzpicture}
です.使い方やサンプルなどは 

 https://texwiki.texjp.org/?TikZ

を見て下さい.また,TikZiTというGUIエディタもあるようです.

https://tikzit.github.io/

How to rotate a pdf file 90 degrees

 If you use a Linux OS, I recommend that you use the application pdfjam on terminal. Please see the following page for further details.

 https://unix.stackexchange.com/questions/394065/command-line-how-do-you-rotate-a-pdf-file-90-degrees

How to check the battery's status on the terminal (Linux)

See this page of askubuntu: https://askubuntu.com/questions/69556/how-do-i-check-the-batterys-status-via-the-terminal

確率論的野鳥(2023/10/9現在)

自分の.emacsの野鳥設定部分のうち数学記号部分のみを記しておく.ただし,多分に確率論風.
(setq YaTeX-math-sign-alist-private
 '(
;;;   ("q"         "Q"          "(Q)")
;;;   ("z"         "Z"          "ZZ")
;;;   ("t"         "text"          "text")
   ("bb"        "mathbb"        "\mathbb{}")
   ("mb"        "mathbf"        "\mathbf{}")
   ("mc"        "mathcal"       "\mathcal{}")
   ("qu"        "quad"          "__")
   ("qq"        "qquad"         "____")
   ("ls"        "varlimsup"     "___\nlim")
   ("li"        "varliminf"     "lim\n---")
   ("il"        "varinjlim"     "lim\n-->")
   ("pl"        "varprojlim"    "lim\n<--")
   ("ae"        "textrm{ a.e. }"  "a.e.")
   ("as"        "textrm{ a.s. }"  "a.s.")
   ("qe"        "textrm{ q.e. }"  "q.e.")
   ("st"        "textrm{ s.t. }"  "s.t.")
   ("capa"      "textrm{Cap}"   "Cap")
   ("supp"      "textrm{supp }" "supp ")
   ("Li"        "lim"           "lim")
   ("limi"      "liminf"        "liminf")
   ("lims"      "limsup"        "limsup")
   ("pi"        "prod"          "Π")
   ("U"         "bigcup"        "∪")
   ("UU"        "bigcap"        "∩")
   ("/o"        "emptyset"      "Φ")
   ("bigop"     "bigoplus"      "_\n(+)~")
   ("bigot"     "bigotimes"     "_\n(x)\n ~")
   ))