これはtexcreate v 2です.2リリース!


バージョン2.1をリリースした後、私はテンプレートにいくつかの注意を集中したいので、おそらくこのマイナーな更新プログラムで新しいものを推測することができます.

カスタムテンプレートのサポート


だから、大きな更新プログラムは、カスタムテンプレートであり、それは私がこれを最初に説明するのがベストですので、人々はそれを行う方法を理解しています.
カスタムテンプレートを作成するには、2つのファイルが必要です.main.texcreate and structure.texcreate , これらなしでビルドが失敗します.
テンプレートを作成しましょうSimple_Report , 次の手順を実行します.

ステップ0 - texcreate v 2を必ず確認してください。2.1


# if you don't have it installed already 
$ cargo install texcreate
# if you have it installed 
$ texcreate update

ステップ1 -ディレクトリを作成する


# Create the directory and necessary files 
$ mkdir Simple_Report 
$ cd Simple_Report 
$ touch main.texcreate && touch structure.texcreate 

ステップ2 -テンプレートにコンテンツを追加する

  • main.texcreate :
  • 本体に必要なコードを全て含みます
  • structure.texcreate :
  • すべてのパッケージ、および余分なメタ情報を含んでいます
  • ステップ3 -カスタムテンプレートを設定します。トムール


    削除するtemplate フィールドと代わりにcustom_template フィールドを追加し、Simple_Report . このセットを使用すると、現在非常に独自のカスタムテンプレートを使用することができます.

    追加テンプレート


    カスタムテンプレートを使用して、私も2新しいビルドテンプレート、辞書やニュースを追加しました.これらの新しいテンプレートは、ユーザーが独自の辞書や新聞を作成することができますno_maketitle() to tex_rs::Latex 無効になります.\maketitle ドキュメントの本文(辞書やニューステンプレートで使用)に書き込まれます.
    これで、我々は現在利用可能な11のテンプレートが利用可能であると言いましたtexcreate --list または以下のようになります.
    =======================
      Available Templates
    =======================
    ==> Basic: Designed for simple documents
    ==> Math: Designed for math focused documents
    ==> Theatre: Designed to write plays/shows
    ==> Code: Designed to write code using listings
    ==> Novel: Designed to write well...novels
    ==> Beamer: Designed to create presentations
    ==> Lachaise: Designed for school assignments and academic papers
    ==> Lachaise-Mod: Modified version of Lachaise Template, changes in colours/design
    ==> Dictionary: Designed to write your own dictionary
    ==> News: Designed to write columned newspapers
    =======================