是否有一种 LaTeX 样式可以反映 Practical Typography 对研究论文布局的建议?

是否有一种 LaTeX 样式可以反映 Practical Typography 对研究论文布局的建议?

马修·巴特里克实用排版他说他喜欢的格式(碰巧,这也是我技术写作课期末论文必须使用的格式)是

  1. 页边距更大;行长更短(每行约 65 个字符)。
  2. 点尺寸较小。
  3. 行距减小了。
  4. 使用更好的字体(Equity 和 Concourse)
  5. 句子之间只有]一个空格。
  6. 连字功能已打开 [并且]
  7. [没有]下划线。

示例 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 个字母,这不是很好。此外,连字符和不规则右布局的混合非常奇怪。所以我不确定您是否真的想要看起来像示例文本的东西

相关内容