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 3 years have passed since last update.

Latex For Mac ドキュメントクラス

Last updated at Posted at 2021-07-13

はじめに

 LaTex

環境

ハード:MacBook Air2020
OS:macOS 11.4(BigSur)
LaTex:LaTeX2ε pLatex(ptex2pdf)
その他:ANACONDA、MAMP for Moodle、Visual Studio Code等

ドキュメントクラス

論文     :jsarticle
報告書(長文):jsreport
本      :jsbook

オプション

出力ソフト

  • dvipdfmxなど

フォントサイズ

  • 10pt(デフォルト)
  • 11pt
  • 12pt
  • その他 17pt、21pt、25pt、30pt、36pt、43pt、12Q、14Qなど

用紙サイズ

  • a4paper(A4版)
  • a5paper
  • b4paper
  • papersize

組み方

2段組 twocolumn

例 A4サイズ2段組で11ポイントで論文フォーマットとする

  \documentclass[dvipdfmx,11pt,a4paper,twocolumn]{jsarticle}

プリアンサンブル

\documentclass\bigin{document}間に記述するオプション
  \usepackage[パッケージオプション]{オプションのパッケージ名}

  • 本文と数式をpalatino: \usepackage[sc]{mathpazo}
  • サンセリフはHelvetica: \usepackage[scaled]{helvet}
  • 追加フォント: \usepackage{textcomp, mathcomp}
  • 8ビットエンコード(標準):\usepackage[T1]{fontenc}
  • 等幅フォントをlmttに再定義:\renewcommand{\ttdefault}{lmtt}
  • 使用漢字数を増やす:\usepackage{otf}

例1

\documentclass[b5/12Q,fleqn]{kbdbook6_dic}
\usepackage[dvipdfmx]{graphicx}
\usepackage[TS1,OT1,T1]{fontenc}
\usepackage{textcomp}
\usepackage{amsmath,amssymb}
\usepackage{makeidx}
\usepackage{ascmac,fancybox} 		    % 枠
\usepackage{colortbl}                   % 表のセルカラー化
\usepackage{pxrubrica}                  % 文字列上ドット用
\setlength{\columnseprule}{0.4pt}

例2

\documentclass[b5/14Q,fleqn]{kbdbook6_edc}
\usepackage[dvipdfmx]{graphicx}      % 図
\usepackage[TS1,OT1,T1]{fontenc}     % 8ビットエンコード等

\usepackage{fourier}                 % IBM PLex フォント
\usepackage{plex-serif}
\usepackage[basic,italic,symbolgreek]{mathastext}
\usepackage[sfdefault]{plex-sans}

\usepackage{textcomp,mathcomp}       % 追加フォント
\usepackage{amsmath,amssymb}

\usepackage{ascmac,fancybox}         % 文字囲み
\usepackage{tcolorbox}               % 枠囲み
\usepackage{setspace}                % 行間調整
\usepackage{enumerate}               % 箇条書き
\usepackage{multirow}                % 表の縦結合
\usepackage{makeidx}

章・節・項・段落

  • 部    \part{xxxx}
  • 章    \chapter{xxxx} ※jsbook、jbook、jreportなど一部
  • 節    \section{xxxx}
  • 小節   \subsection{xxxx}
  • 小段落  \paragraph{xxxx}
  • 長い引用 \begin{quotation} 〜 \end{quotation}
  • 短い引用 \begin{quote} 〜 \end{quote}

目次
文字サイズと書体

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?