0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

#1 LuaLaTeX ドキュメントクラス

Posted at

 これは,和文LuaLaTeXでの利用を想定したLaTeXのPreambleに関する記事です.

コンパイル

 file.texに対して,LuaLaTeXでコンパイルするには,

$ lualatex file.tex

でPDFが生成される.

documentclass

\documentclass[option]{class}

class

  • {jlreq}
    • 横書きarticle相当の文書クラスとなる.
    • エンジンは自動判別.
    • 詳しくはこちら

  • {ltjsreport}
    • 報告書クラス
    • \usepackage{luatexja}読み込みは不要
    • 詳しくはこちら
  • {jsarticle}
    • 報告書クラス
    • \usepackage{luatexja}読み込みが必要.
    • 詳しくはこちら

  • {ltjsarticle}

    • 論文クラス
    • \usepackage{luatexja}読み込みは不要.
    • 詳しくはこちら
  • {jreport}

    • 論文クラス
    • 詳しくはこちら
    • \usepackage{luatexja}読み込みが必要.

option

  • 文字サイズ
    • 10pt, 11pt, 12pt ... など.(10ptがデフォルト)
  • 用紙サイズ
    • jlreq, jsarticle, jreportクラス
      • a4paper, b4paperなど.
    • ltjsreport, ltjsarticleクラス
      • a4, b4など.
  • 段組
    • 1段組:onecolumn(デフォルト)
    • 2段組:twocolumn
  • 用紙向き
    • 縦:無記述(デフォルト)
    • 横:landscape
  • ページ校正
    • oneside(デフォルト)
    • twoside
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?