是否有一種 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 個字母,這不太好。同樣,連字符和不規則佈局的混合也很奇怪。所以我不確定你是否真的想要看起來像範例文字的東西

相關內容