blindtext パッケージを使って、\blindtext で入力するとダミーテキストが入力できる。
\blindmathpaper で、ダミー数式が入ったダミーテキストを入力することができる。
例
\usepackage{blindtext}
\begin{document}
\blindmathpaper
\end{document}
結果

雑記
投稿日:
blindtext パッケージを使って、\blindtext で入力するとダミーテキストが入力できる。
\blindmathpaper で、ダミー数式が入ったダミーテキストを入力することができる。
\usepackage{blindtext}
\begin{document}
\blindmathpaper
\end{document}
執筆者:seyanen
関連記事
tex で文中の文字に \textcolor で色をつける方法
color パッケージを使っておき、本文中 \textcolor で色をつける。 例 \usepackage{color} \begin{document} {\bf \textcolor{red}{ …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。