![研究論文のレイアウトに関する Practical Typography の提案を反映した LaTeX スタイルはありますか?](https://rvso.com/image/286984/%E7%A0%94%E7%A9%B6%E8%AB%96%E6%96%87%E3%81%AE%E3%83%AC%E3%82%A4%E3%82%A2%E3%82%A6%E3%83%88%E3%81%AB%E9%96%A2%E3%81%99%E3%82%8B%20Practical%20Typography%20%E3%81%AE%E6%8F%90%E6%A1%88%E3%82%92%E5%8F%8D%E6%98%A0%E3%81%97%E3%81%9F%20LaTeX%20%E3%82%B9%E3%82%BF%E3%82%A4%E3%83%AB%E3%81%AF%E3%81%82%E3%82%8A%E3%81%BE%E3%81%99%E3%81%8B%3F.png)
マシュー・バタリック実用的なタイポグラフィ彼が好む形式(そして偶然にも、私がテクニカルライティングのクラスの最終レポートで使用しなければならない形式)は、
- ページの余白は大きくなり、行の長さは短くなります(1行あたり約65文字)。
- ポイントサイズが小さくなります。
- 行間隔が狭くなります。
- より良いフォントが使用されています (Equity と Concourse)
- 文と文の間にはスペースが 1 つだけあります。
- ハイフネーションがオンになっている
- 下線はありません。
サンプルPDF
リンク
上記の基準を満たす定義済みのドキュメントクラスまたはスタイルはありますか? そうでない場合、そのようなスタイルを自分で実装するにはどうすればよいでしょうか?
答え1
これはMacTeX 2013で構築されたスターターです。チャーターインストールされているフォント:
% !TEX TS-program = XeLaTeX
\documentclass[11pt]{article}
\usepackage[lmargin=2in,rmargin=2in]{geometry} % wider margins
\usepackage{setspace}
\onehalfspacing % 130% spacing between lines:
% http://texblog.org/2011/09/30/quick-note-on-line-spacing/
\usepackage{fontspec,lipsum}
\setmainfont{Charter}
\setlength\parindent{22pt} % indentation
\title{Butterick Example}
\author{Mike Renfro}
\date{\today}
\begin{document}
\maketitle
\newlength{\alphabetlength}
\settowidth{\alphabetlength}{abcdefghijklmnopqrstuvwxyz}
\section{Introduction}
One Charter alphabet at 11~point measures \the\alphabetlength, and doing
some calculations, it looks like using left and right margins of about 2~inches
is going to work. Now, let's set a paragraph using some dummy text from the
\verb|lipsum| package.
\subsection{A subsection}
\lipsum[1-2]
\end{document}
答え2
\documentclass{article}
% put your font commands here for the fonts
\begin{document}
\frenchspacing\raggedright
... your document here
\end{document}
^^ これでほぼ目的を達成できました。\usepackage[small]{titlesec}
タイトルにも「小さいフォント」を適用すべきかどうかを追加してもbuff-er
よいでしょう。ところで、あなたの例では、ハイフンでつながれた単語が次の行に 2 文字しか残っておらず、これはあまり良くありません。また、ハイフンと右寄せレイアウトの組み合わせもかなり奇妙です。したがって、サンプル テキストのような見た目にしたいのかどうかはわかりません。