You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _site/feed.xml
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
<?xml version="1.0" encoding="utf-8"?><feedxmlns="http://www.w3.org/2005/Atom" ><generatoruri="https://jekyllrb.com/"version="3.10.0">Jekyll</generator><linkhref="http://localhost:4000/feed.xml"rel="self"type="application/atom+xml" /><linkhref="http://localhost:4000/"rel="alternate"type="text/html" /><updated>2025-02-25T22:52:43+08:00</updated><id>http://localhost:4000/feed.xml</id><titletype="html">de_soot</title><subtitle>Hosted on Github Pages</subtitle><entry><titletype="html">Guide to APA with groff ms and refer</title><linkhref="http://localhost:4000/groff-apa"rel="alternate"type="text/html"title="Guide to APA with groff ms and refer" /><published>2025-02-07T00:00:00+08:00</published><updated>2025-02-07T00:00:00+08:00</updated><id>http://localhost:4000/groff-apa</id><contenttype="html"xml:base="http://localhost:4000/groff-apa"><![CDATA[<p>This guide explains why and how I used groff with the ms and refer macros to write my college essay in Neovim.</p>
1
+
<?xml version="1.0" encoding="utf-8"?><feedxmlns="http://www.w3.org/2005/Atom" ><generatoruri="https://jekyllrb.com/"version="3.10.0">Jekyll</generator><linkhref="http://localhost:4000/feed.xml"rel="self"type="application/atom+xml" /><linkhref="http://localhost:4000/"rel="alternate"type="text/html" /><updated>2025-10-23T13:02:13+08:00</updated><id>http://localhost:4000/feed.xml</id><titletype="html">de_soot</title><subtitle>Hosted on Github Pages</subtitle><entry><titletype="html">Guide to APA with groff ms and refer</title><linkhref="http://localhost:4000/groff-apa"rel="alternate"type="text/html"title="Guide to APA with groff ms and refer" /><published>2025-02-07T00:00:00+08:00</published><updated>2025-02-07T00:00:00+08:00</updated><id>http://localhost:4000/groff-apa</id><contenttype="html"xml:base="http://localhost:4000/groff-apa"><![CDATA[<p>This guide explains why and how I used groff with the ms and refer macros to write my college essay in Neovim.</p>
2
2
3
3
<h1 id="table-of-contents-">Table of Contents <a name="tableofcontents"></a></h1>
4
4
@@ -120,6 +120,13 @@
120
120
121
121
<p>which works because even though the title (<code class="language-plaintext highlighter-rouge">.TL</code>) is required, it stops at the abstract (<code class="language-plaintext highlighter-rouge">.AB</code>, which ends at <code class="language-plaintext highlighter-rouge">.AE</code>; the <code class="language-plaintext highlighter-rouge">no</code> argument suppresses the “Abstract” heading).</p>
<p>If instead you want to <strong>not</strong> have any page headers (including page numbering) for reasons such as plagerism report checkers potentially producing errors, disabling automatic page numbering is as easy as defining the central header to be empty:</p>
<p>Many lecturers demand assignments to be submitted in double-spaced Times New Roman in 12 point size. This section covers how to change the font family, size, style, and line spacing.</p>
@@ -238,7 +245,7 @@ join-authors " & " ", " " & " # Change default "and" to ampersand (&
238
245
. SH
239
246
. ce
240
247
. nop \&\\*[REFERENCES]
241
-
.\" sp
248
+
.\" sp 2
242
249
.\" nr PS 12
243
250
. par@reset
244
251
..
@@ -249,7 +256,7 @@ join-authors " & " ", " " & " # Change default "and" to ampersand (&
249
256
<ul>
250
257
<li>To make the heading centered, put <code class="language-plaintext highlighter-rouge">.ce</code> above where the heading is rendered (<code class="language-plaintext highlighter-rouge">.nop \%\\*[REFERENCES]</code>).</li>
251
258
<li>(Optional) <code class="language-plaintext highlighter-rouge">.nr PS 14</code> above it increases the font size to 14pt, just remember to reset it back to normal (12pt) with <code class="language-plaintext highlighter-rouge">.nr PS 12</code> after.</li>
252
-
<li>(Optional) <code class="language-plaintext highlighter-rouge">.sp</code> adds an extra line of space below it.</li>
259
+
<li>(Optional) <code class="language-plaintext highlighter-rouge">.sp 2</code> adds two extra lines of space below the heading.</li>
253
260
</ul>
254
261
255
262
<h2 id="space-between-entries-">Space Between Entries <a name="spacebetweenentries"></a></h2>
@@ -366,8 +373,8 @@ join-authors " & " ", " " & " # Change default "and" to ampersand (&
366
373
.ds ref*spec!J ". " " "\fI" "\fP"
367
374
.ds ref*spec!N """ "(" "" ")"
368
375
.ds ref*spec!O ". " "
369
-
.ds ref*spec!P ", " " "p.\~"
370
-
.ds ref*spec!PP ", " " "pp.\~"
376
+
.ds ref*spec!P ", " " "\~"
377
+
.ds ref*spec!PP ", " " "\~"
371
378
.ds ref*spec!T ". " "
372
379
.ds ref*spec!T:0 ". " "
373
380
.ds ref*spec!T:2 ". " "
@@ -383,6 +390,7 @@ join-authors " & " ", " " & " # Change default "and" to ampersand (&
383
390
<li>In both the <code class="language-plaintext highlighter-rouge">.ds ref*spec!T:0</code> and <code class="language-plaintext highlighter-rouge">.ds ref*spec!T:2</code> rows, <code class="language-plaintext highlighter-rouge">\fI</code> in <code class="language-plaintext highlighter-rouge">arg 3</code> and <code class="language-plaintext highlighter-rouge">\fP</code> in <code class="language-plaintext highlighter-rouge">arg 5</code> are removed to not italicise the text and because of redundancy (<code class="language-plaintext highlighter-rouge">\fP</code> resets font style back to the previous style), respectively.</li>
384
391
<li>In the <code class="language-plaintext highlighter-rouge">.ds ref*spec!V</code> row, its <code class="language-plaintext highlighter-rouge">arg 1</code> is changed from empty (<code class="language-plaintext highlighter-rouge">""</code>) to a comma (<code class="language-plaintext highlighter-rouge">,</code>) to add a comma after the journal/periodical field; its <code class="language-plaintext highlighter-rouge">arg 3</code> is changed from bold-ing (<code class="language-plaintext highlighter-rouge">\fI</code>) to italicising (<code class="language-plaintext highlighter-rouge">\fB</code>) the text.</li>
385
392
<li>All <code class="language-plaintext highlighter-rouge">\fP</code> in <code class="language-plaintext highlighter-rouge">arg 5</code> are moved to <code class="language-plaintext highlighter-rouge">arg 4</code> to make sure the punctuations after each field are not in bold or italics.</li>
393
+
<li>When numbering pages, APA does not denote with <code class="language-plaintext highlighter-rouge">p.</code> for single pages or <code class="language-plaintext highlighter-rouge">pp.</code> for page ranges, so they were removed in their respective rows.</li>
0 commit comments