日本語の説明はこのファイルの後半にあります。
LaTeX Build Tools is a tool to manage big LaTeX source files. This version is different from the old versions.
- Use
lbt
command to run every sub commands. - It is provided as a gem, which is a Ruby library program.
The old versions, the one with rake and the other of bash scripts, are moved to the other branches, rake_version
and bash
respectively.
LaTeX Build Tools supports LuaLaTeX engine only.
If you want to use another engine, you need to modify lib/lbt/build.rb
and lib/lbt/part_typeset.rb
.
- Linux operating system
- Ruby. You can install it by one of the followings.
- Install the distribution package
- Install it with rbenv. Refer to Rbenv's GitHub repository
- LuaLaTeX. You can install it by one of the followings.
- Install the distribution package
- Install TexLive. Refer to TexLive website
You can install lbt
from RubyGems.org with gem command.
$ gem install lbt
If you want to install it from the source code, do the following.
- Click the
Code
button, then clickDownload ZIP
in the small dialog. - Unzip the downloaded Zip file, then a new directory
LaTeX-BuildTools-master
will be created. - Type
gem build lbt
under the directory, then the gem filelbt-X.X.X.gem
is created. The numberX.X.X
is the version number like0.5.2
. - Type
gem install lbt-X.X.X.gem
, whereX.X.X
is the version number.
See Tutorial.en.
GPL. See License.md.
LaTeX Build Toolsは大きなLaTeXソースファイルを管理するためのツールです。 現在の版は次の2点が旧版と異なっています。
- lbtというコマンドからすべてを起動
- gem(Rubyのライブラリ・プログラム)として提供される
旧版の、rakeを用いる版とbashスクリプト版は、それぞれrake_version
ブランチとbash
ブランチに移動しました。
LaTeX Build ToolsがサポートするLaTeXエンジンはLuaLaTeXです。
その他のエンジンを使いたい場合はlib/lbt/build.rb
とlib/lbt/part_typeset.rb
の修正が必要です。
- Linux オペレーティング・システム
- Ruby。Rubyのインストール方法は次の2通りがある
- ディストリビューションのパッケージをインストール
- Rbenvを用いてインストール。詳しくはRbenvのGitHubレポジトリを参照してほしい
- LuaLaTeX。LuaLaTeXのインストール方法は次の2通りがある
- ディストリビューションのパッケージをインストール
- TexLiveをインストール。詳しくはTexLiveのウェブサイトを参照してほしい
gemコマンドでRubyGems.orgからlbt
をインストールする。
$ gem install lbt
以上が最も簡単なインストール方法だが、ソースコードからインストールしたい場合は次のようにする。
- GitHubのレポジトリを開き
Code
ボタンをクリック。小さいダイアログが現れるので、Download ZIP
をクリックする - ZIPファイルを解凍すると
LaTeX-BuildTools-master
というディレクトリが作られる - 端末をそのディレクトリに移動して
gem build lbt
とタイプすると、lbt-X.X.X.gem
というGemファイルが作られる。 この中のX.X.X
はバージョン番号で、例えば0.5.2
などのようなものである gem install lbt-X.X.X.gem
とタイプしてインストールする(X.X.X
はバージョン番号)
使い方の説明はTutorial.jaを参照してほしい。
GPL。License.mdを参照。