From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200610301501.k9UF10k26312@zamenhof.cs.utwente.nl> To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Subject: Re: [9fans] mimicking Plan 9 paper style with LaTeX? In-reply-to: Your message of "Mon, 30 Oct 2006 23:11:37 +0900." <1092974B-C5F5-42BB-9792-F4761B470265@ar.aichi-u.ac.jp> References: <200610301325.k9UDPFG25159@zamenhof.cs.utwente.nl> <1092974B-C5F5-42BB-9792-F4761B470265@ar.aichi-u.ac.jp> From: Axel Belinfante MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <26308.1162220459.1@zamenhof.cs.utwente.nl.cs.utwente.nl> Date: Mon, 30 Oct 2006 16:01:00 +0100 Topicbox-Message-UUID: d8c82f8c-ead1-11e9-9d60-3106f5b1d025 > > any known recipes to make a LaTeX document > > 'visually similar to the Plan 9 papers' > > of /sys/doc/9 ? > > > > Mine is, substitutiong "article.cls" by [...] thanks, I'm trying it. the plan 9 papers seems to use whitespace-separated paragraphs instead of indented ones. I'm trying to achieve that effect with additional commands in the document; I guess it could be done in p9article.cls instead. before the \begin{document} I add: \setlength\parindent{0pt} \setlength\parskip{0.25\baselineskip} % the 0.25 is just a guess these seem not to affect the abstract, so I also add after the \begin{abstract} : \setlength\parindent{0pt} \setlength\parskip{0.25\baselineskip} \noindent Axel.