• Stars
    star
    1,042
  • Rank 42,564 (Top 0.9 %)
  • Language
    TeX
  • Created almost 7 years ago
  • Updated 8 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Advice for writing LaTeX documents

Advice for writing LaTeX documents

Introduction

If you're writing a scientific book, a paper, or a thesis in computer science, engineering, mathematics, physics or a related field, it pays to write it using LaTeX, especially if your work contains formulas, symbols, and heavy cross referencing. Here is advice for doing so, collected over decades of writing hundreds of papers and books, mostly using LaTeX.

Note that this list is not intended to provide advice on English writing style, scientific writing, or TeX programming. There are many other excellent guides for all these topics.

Contributions via GitHub pull requests are always welcomed.

Put the document under version control

  • Create a repository for your document and add to it all the document's source code. This can live on GitHub if you plan to work with others or want to keep a copy on another server, or it can be a local Git repository you create with git init.
  • Do not include in the repository generated files, such as the formatted PDF document, compiled bibliographies, or PDF charts generated from R or Python scripts. Instead, add Makefile rules to automatically create these files at build time. Generated files needlessly increase the size of the repo, making it time-consuming to clone and fetch updates. They also pollute difference listings with immaterial changes.
  • Commit your changes to the repository in logical chunks using meaningful commit messages.
  • Don't combine heavy formatting changes (e.g. adopting a different publisher's style) with semantic changes (e.g. changes following suggestions by the second reviewer). Instead, perform a separate commit for each set of changes.
  • When you remove text, delete it completely, rather than commenting it out. The version control system will keep track of it and your document will remain clean.
  • Tag the revisions you submit using annotated tag objects (git tag -a). This allows you to go back to specific versions when going over review comments, or when starting a version of a new publication venue. Push the tags to the online repository you're using so that all can see them (git push --tags).

Write readable and maintainable LaTeX source code

  • Treat the LaTeX source code with love and care as you would treat software code. You aim is to keep the source code readable and maintainable.
  • Avoid long lines, splitting text somewhere between column 60 and 70. (You can configure your editor to do this for you).
  • Start each phrase on a separate line, and further split a phrase according to its logical structure. Here is an example.
Obtaining metrics from large code bodies is difficult
for technical and operational reasons~\cite{Moc09,GS13}.
On the technical side,
code dependencies make it difficult to establish
the full context needed in order to parse and semantically analyse the code.
This is especially true for C code,
where the compilation depends on
system header files,
compiler-defined macros,
search paths, and
compile-time flags passed through the build process~\cite{Spi03r,LKA11,GG12}.
The operational reasons are associated with the required throughput,
though due to the relatively small number of releases we examined,
this was not a major issue in this study.
  • Splitting lines at the level of phrases and a sentence's logical structure offers you the following advantages.
    • It gives clean line differences of changes made between versions; a line change corresponds at most to a single phrase. (You can obtain difference listings on GitHub, or via git diff.) Clean differences make it easier to see what has changed and to merge changes of others when working as a group.
    • It makes it easy to rearrange the order of sentences or the elements in a list, simply by moving lines around.
    • It gives you with a second (a structural) view of your document, which nicely complements the flowed typeset view that LaTeX generates. This provides you with additional opportunities to spot and fix syntax, grammar, and style mistakes. For example, this allows you to spot inconsistent or repetitive structure in a paragraph's sentences.
  • Use comments (sequences starting with %) to indicate the key idea of each paragraph or section.
  • Use comment keywords, such as XXX or TODO, to indicate places where more work is needed.
  • Write LaTeX code and configure your editor so that you can fold sections and paragraphs. This shall allow you to inspect your document's structure as an outline. If needed, add fold marks in comments (e.g. % {{{2) to facilitate this. For example, if your document's structure is in sections and subsections, these would be level-1 and level-2 folds. You would then start each paragraph with a level-3 fold comment, such as the following.
% Advantages of model-based development {{{3
  • Avoid splitting short documents (such as a journal or conference paper) into multiple files (e.g. introduction.tex, methods.tex, results.tex, conclusions.tex). Such splitting makes it difficult to perform a number of tasks with your editor:

    • overview the material's composition (e.g. the balance of the sections' length),
    • globally search or search and replace a particular term, and
    • move matter from one section to another.

    When the document is split, these tasks require you to switch from one file to another or to use external tools. Feel free to split longer documents (such as a book or a thesis) in order to shorten a project's long build and loading time.

Automate the document build

Ensure that the document can be built with a single command, and that files that are out of date are appropriately rebuilt. This saves you from repeatedly executing multiple commands, makes it easier to work as a team, and avoids the accidental use of outdated files. You have the following options here.

  • You can use the Unix make command. It's available out of the box, but expressing the need for multiple passes over your document is difficult, so you may end up processing the document more often than needed.
  • A second alternative is latexmk, which comes bundled with most LaTeX distributions. See this StackExchange answer for a complete example.
  • A third alternative is the use of BSD Owl scripts, as documented here. Both latexmk and BSD Owl will help you create clean and functional build setups. Choose the one that is easier to install on your system and matches your taste.
  • A fourth alternative is SCons. SCons' configuration files, typically named SConstruct, are Python scripts. One such is demonstrated here. You may find a short overview of supported commands/packages here.

Use Continuous Integration

Once you have automated your build, you are ready for the next step: continuous integration (CI) for LaTeX documents. Executing an automated build on every commit allows you to easily spot accidentally forgotten auxiliary files such as images or tables. You can also easily isolate changes that broke the build and that are sometimes hard to debug later. Moreover, CI creates a defined way to build your project, on which every collaborator can rely on.

Thanks to travis-ci-latex-pdf, there is a ready-made solution for Travis CI that you just need to copy into your project to get started.

Another alternative involves integrating the ChkTeX linter into the build process. This checks documents for certain LaTeX anti-patterns, such as the use of ... instead of the typographically correct \dots or other such violations. Users can define their own rules, too, for example to enforce consistency in the spelling of certain phrases. Now it is up to you to create ChkTeX rules to enforce the guidelines in this document. If you do, please share them.

Automate the management of bibliographic references

  • Create one or more centrally-managed bibliography files for your work, and list those in a \bibliography command in all documents you write. You can use these tools to share your references with others and navigate to them.

  • Using BibTeX or Biber you can then automatically create the document's list of references in the style prescribed by the publisher.

  • Use \cite commands to reference specific bibliographic entries.

  • Include multiple references in the same \cite command (e.g. \cite{Doh19,Spi22}) rather than employing multiple \cite commands (\cite{Doh19} \cite{Spi22}).

  • If you need to reference a specific page or chapter, include this information in square brackets before the key. For example, write: … educational use~\cite[p.~8]{LR89}.

  • If your publisher requires in-text author-year citations, use BibLaTeX or the natbib package in conjunction with the \citet, \citep, and \citeauthor commands. For example, write:

    • \citet{jon90} proposed … to get Jones et al. (1990) proposed …
    • Another argument \citep{jon90} … to get Another argument (Jones et al., 1990) ….
    • As \citeauthor{jon90} argued … to get As Jones argued … (e.g. on a subsequent mention in the same paragraph).
  • Include in your BibTeX entries all required fields and as many of the optional fields as possible. Copy and consult this file to remember which fields are available, which are required, and which are supported for each entry type.

  • Obtain a BibTeX entry for a publication's DOI using the doi2bib service. In many cases the quality of its results is higher than that provided by the publisher's digital library.

  • If you copy-paste a BibTeX entry from a digital library, edit it carefully to ensure a consistent high-level of quality.

    • Write the title using title capitalization, e.g. write The Elements of Programming Style, rather than The elements of programming style. This ensures that the title will appear correctly if a particular bibliography style requires title capitalization.
    • Put a title's characters that should always be capitalized in braces, e.g. The {C} Programming Language, or Fifty Years of {M}oore's Law. This ensures these characters will not be converted to lowercase in bibliography styles that do not require title capitalization.
    • Use a consistent format for referring to conferences, for example, {ICSE} '08: Proceedings of the 30th International Conference on Software Engineering. It would be a mistake to use a different format, e.g. 12th Working Conference on Mining Software Repositories (MSR 2015), Proceedings of in another entry.
    • Don't include a URL for entries that have a DOI.
    • Specify an em-dash or en-dash where required, e.g. The Entity-Relationship Model---Toward a Unified View of Data or The Evolution of {C} Programming Practices: A Study of the {U}nix Operating System 1973--2015.
    • Use LaTeX special characters for authors whose names contain non-ASCII characters, e.g. author = {Yann-Ga\"{e}l Gu\'{e}h\'{e}neuc and Herv\'{e} Albin-Amiot}. This change may not be required if you are using Biber, provided that the digital library correctly provides the author names in Unicode.
  • Use consistent, easily derivable, short names for your bibliography entries. One practical scheme is as follows.

    • The single author's surname first three letters, followed by the last two year digits, e.g. Ker08 for an article published by Brian Kernighan in 2008.
    • Up to four multi-author surname initials followed by the last two year digits, e.g. DMG07 for an article published by Duvall, Paul M. and Matyas, Steve and Glover, Andrew in 2007.
    • The lettera, b, c, etc appended to the above keys in the case of clashes.

    Through this scheme you can easily search for an existing entry in your bibliography files and saved articles, because you can quickly derive the key used. Also this scheme will help you avoid duplicate entries, because the corresponding keys will clash.

  • If you save the PDF document associated with a bibliography entry in your files, name it using the entry's key, e.g. LR89.pdf.

  • If you print (or photocopy) a document associated with a bibliography entry, write the corresponding key on its top right corner. This will help you reference it in your work. You can also use this key to file the printout so that you can find it in the future.

  • If you prefer to edit your BibTeX files with an application rather than a generic editor, consider using JabRef for the desktop or Bibtool on the command line.

Use style files

Conference organizers and publishers often supply style files that determine the appearance and formatting of a document and its references. Download them and use them. If you're writing a thesis and your institution doesn't provide a template you can use this one. Seeing your document in its published look boosts your motivation, helps you appreciate how your readers will experience it, and minimizes rework by forcing you to comply with the publisher's requirements while you develop your document.

Use third-party LaTeX packages

You can obtain many formatting goodies by incorporating into your document third-party LaTeX packages. Most LaTeX distributions provide a package management system that simplifies the installation and maintenance of packages. Here are some popular LaTeX packages your may want to know about.

  • algorithmicx: Display good-looking pseudocode
  • amsmath, amssymb: AMS mathematical facilities
  • amsthm: Typesetting theorems (AMS style)
  • booktabs: Publication quality tables
  • cite: Improved citation handling
  • fancyhdr: Extensive control of page headers and footers
  • geometry: Flexible and complete interface to document dimensions
  • glossaries: Define and typeset acronyms and glossaries
  • hyperref: Extensive support for hypertext
  • listings: Typeset source code listings
  • minted: Typeset source code listings with highligthing
  • natbib: Flexible bibliography support
  • PGF/TikZ: Create PostScript and PDF graphics
  • setspace: Set space between lines
  • siunitx: A comprehensive (SI) units package
  • url: Verbatim with URL-sensitive line breaks
  • xcolor: Driver-independent color extensions
  • xspace: Define commands that appear not to eat spaces
  • cleveref: Intelligent cross-referencing

Avoid explicit formatting

  • Avoid the use of explicit formatting within the text. Instead, use commands that specify why your text should be formatted in a special way. For example, rather than specifying a large bold font, use \section and rather than specifying italic text use \emph.
  • If your document requires that particular text should be formatted in a special way, declare a new command or environment to format it. This will allow you to easily adjust the formatting throughout the document. For example, the following command sets a document's finding in boldface
\newcommand{\finding}[1]{\textbf{#1}}

while the following environment declaration will list a software's license in a small font keeping its formatting.

\newenvironment{license}{\verbatim\scriptsize}{\normalsize\endverbatim}

Mathematics

  • Set all math, including formulas, stand-alone math symbols, and negative numbers in LaTeX's math mode. See the following example, which includes a little-known formula and in-text references to its elements.
\[
E = mc^2
\]
This formula states that the equivalent energy ($E$)
can be calculated as the mass ($m$) multiplied
by the speed of light ($c$) squared.
  • Use balanced \left and \right commands to markup (balanced) bracketing elements. This ensures that the elements will be correctly sized, according to the formula they include. For example, write \left(\cos(x) + i \sin(x)\right)^n.
  • Use special markup for character sequences math mode. LaTeX assumes an implicit multiplication in character sequences it encounters in math mode, and sets the text with corresponding spacing.
    • If the characters indicate one of LaTeX-supported operators then use that operator command, e.g. \mod, \max, or \sin.
    • If the characters indicate an unsupported operator, declare it using the amsmath command \DeclareMathOperator, e.g. \DeclareMathOperator{\sha}{sha}.
    • If the characters indicate a multi-character variable name, set it in italics or roman using e.g. \mathit{Delta} or \mathrm{Delta}.
    • Set non-index or descriptive subscripts in roman rather than italic. Example: x_{\mathrm{max}}
  • Indent elements and break lines in order to express the logical structure of the formula you are writing. For example, write:
F_{n} =
  \cfrac{1}{\sqrt{5}} \left(\cfrac{1 + \sqrt{5}}{2}\right)^n
  - \cfrac{1}{\sqrt{5}} \left(\cfrac{1 - \sqrt{5}}{2}\right)^n

Keep the operators as the first character on a line.

  • If you write a lot of math in LaTeX, acquaint yourself and follow A.J. Hildebrand's Top Ten List.

Use symbolic references

  • Mark sections, tables, figures, and equations using the \label command, Β  and reference them using the cleveref \Cref command.
  • Avoid referencing floating environments by name Β (e.g. see Figure~\ref{fig:foo});\Cref can create that for you: Β see~\Cref{fig:foo}.
  • Use self-descriptive label names. For example, use tab:statResults rather than Β table1. Use the tab: prefix when labelling tables, the fig: prefix Β when labelling figures, and the sec: prefix Β when labelling sections.

Tables

  • Avoid the use of rules (\hline and |) in tables. They are unsightly and this is the reason you will rarely see them in professionally typeset books.
  • Specify the alignment of numbers to the right, text to the left, and single symbols on the center.
  • When listing numbers with a decimal point align them on the decimal point. You can easily do this by using the siunitx package.
  • Use hard tabs before each column's & separator to start each column's data on the same LaTeX source document column. See the following example.
tr -cs  & 1     & \X    & --    & \V    & 1 \\
sort w  & 0     &       & --    & \X    & 0 \\
fmt     & 1     & \X    & --    & \V    & 1 \\
tr A-Z  & 1     & \V    & 1     &       & 1 \\
sort -u & fmt   & \X    & --    & \V    & 1 \\
  • If the column labels are too long, start them on separate lines, keeping the columns aligned with the data. Example:
% Column labels
Command and options
        & Input requirements
                & Matched
                        & Connected
                                & Matched
                                        & Connected \\
\hline
% Data
tr -cs  & 1     & \X    & --    & \V    & 1 \\
sort w  & 0     &       & --    & \X    & 0 \\
...
  • If you want horizontal rules, use \toprule, \midrule and \bottomrule from the booktabs package. Example:
\toprule
Header \\
\midrule
Table row 1 \\
Table row 2 \\
\bottomrule

Figures

  • Use vector rather than bitmap images. So, avoid including a .jpeg or .png image if you can include a PDF created from vector data, e.g. by direct export from Inkscape or GraphViz or by converting an .svg file.
  • Use the same font in all your figures. This does not need to be the same font as the one you use for the document's text, it could be a sans-serif one, but it should be the same e.g. in charts and diagrams.
  • Ensure figure fonts are scaled to match the size of the document's font. Eyeballing is often enough. For exact measurements you have two options. If you scale the figure by an explicit amount (e.g. 1 or 0.5) you should use a font of the corresponding size (e.g. 11 points or 22 points). If you scale the figure by an arbitrary amount to match the document's column width, you can load the resultant PDF in Inkscape and measure the font size there.
  • Given that floating figures are described by their caption, there is no need to include a separate figure title.
  • Label the figure's axes.

Floats

  • Allow large displayed elements (figures, tables, listings) to have a floating position by using a figure or table environment.
  • Put floats in your document before your first reference to them.
  • Use \centering within a figure or table environment to center its contents. This avoids the extra space introduced by the center environment.
  • Don't sweat too much about float positioning while writing. If your write for a journal, this will be handled during production; if you will provide a camera-ready version, leave this for the last minute.
  • Unless specified otherwise by your publisher, place table captions above the table and figure captions below the figure.

Typography

  • Be consistent in the rules you follow. Some style guides offer contradicting advice. Examples include:
    • the placement of footnotes before or after punctuation,
    • the use of title case or sentence case for capitalizing titles and section headings,
    • the spacing around the em-dash. This isn't a license to randomly use both the one or the other alternative within the document. Adopt your publisher's style or consistently follow the same rule throughout your document.
  • Use three dashes (---) to create the em-dash, which separates parenthetical phrases. According to the Chicago Manual of Style (2.13), an em-dash has no space before or after it. (Note that The Associated Press Stylebook specifies spacing.)
  • Use two dashes (--) to create an en-dash. Use this to specify number ranges, e.g. 2009--2015.
  • Use \dots to produce an ellipsis (...) punctuation symbol.
  • Put footnotes after punctuation symbols, unless your publisher's style specifies otherwise. For example, write … is true.\footnote{See also …}
  • Avoid underlined text. Underlining is used for emphasis in handwritten text and was also carried over in this capacity in typewritten documents. With modern printers and software you don't need to underline, because you can use a different font style (bold or italic) for emphasis.
  • Avoid sequences of uppercase text. Text written in all-uppercase characters is an eyesore and considerably more difficult to read than its lowercase equivalent. Lowercase letters have been designed for easy reading, uppercase were originally designed for easy chiseling on stone.
  • Use small caps rather than an unsightly sequence of capital letters for writing abbreviations. For example, write \textsc{sql}, rather than SQL. Note that some publishers do not follow this style. If you are supplying the final camera ready version (e.g. for conference proceedings), use small caps. If a publisher will edit your document and the publisher does not use small caps, avoid their use; a common frustrating mistake is for publishers to remove the \textsc command, without writing the text in uppercase.
  • Display pseudo-code using the algorithmicx package and environment. See this wikibooks entry for more details.
  • Display source code snippets using the listings (simpler) or the minted (nicer, but with extra dependencies) package. Make sure your code does not go over the paragraph length; if it does, adjust line breaking and/or font size accordingly.

LaTeX formatting

  • Don't spend too much time on formatting your document. Concentrate on communicating your ideas and on making your document maintainable. Excessive formatting tweaks can be counterproductive: you waste time implementing them and your publisher may find it more difficult to use your document.
  • Use a tilde before \cite, \ref, etc. to avoid a line break immediately before the reference. For example, write Some also use logging statements~\cite{Spi06e}.
  • Put a backslash after a non-sentence ending period to ensure this will not be followed by the sentence-ending spacing. For example, write In 1962 Watson et al.\ famously found …
  • Do not use math mode to achieve typographic effects in plain text. For example write RQ\textsubscript{2} rather than $RQ_2$, if you must subscript the number of your research question 2. Similarly use \textsuperscript for plain superscripted text (e.g. Wisper Quiet\textsuperscript{TM}).
  • Match opening and closing quotes using one or two single-opening (β€˜ or β€˜β€˜) and single-closing (’ or ’’) quote characters. Do not use the keyboard's double quote symbol ("). Alternatively you can use the \enquote{} macro from the csquotes package, which will automatically set the right quotes for the configure language and can handle nested quotes correctly.
  • Use the new local font style commands (e.g. \texttt{}, \textsc{}, or \textbf{}) rather than the old switches (e.g. {\tt }, {\sc }, {\bf })
  • To obtain a PDF document with the widely available Times/Helvetica/Courier font set, rather than the LaTeX, less widely used, Computer Modern fonts, use the following packages.
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}

Writing

This guide focuses on LaTeX document preparation. Nevertheless, here is some advice for improving your writing and for avoiding common mistakes.

  • Read, learn, and apply Strunk and White's The Elements of Style.
  • Express each idea in a separate paragraph.
  • Begin each paragraph with a sentence summarising it, transitioning to it, or providing its overall theme.
  • Write your paper's abstract as a structured abstract or as a similarly self-contained summary of the paper. Never summarize the paper's table of contents. ("In this paper we outline the problems associated with sinkholes, describe the methods we used to explore them, present the results of the experiments we performed, and discuss the implications of our findings.")
  • Don't present related work as a laundry list. (X did A [12]. Y developed B [45]. Z wrote C [37].) Instead, analyze what has been done to identify commonalities, differences, or other noteworthy features of how scientific knowledge is built up in the area you're examining. Then present a synthesis of the work along the axes you identified.
  • Avoid the use of adjectives that express a subjective view of your work. (Our innovative method, remarkable results, outstanding accuracy, lightning performance, swift execution time.) Instead, present objective figures that speak for themselves.
  • When reporting numbers round them to the appropriate number of significant digits and decimal places.
  • Don't treat bibliographic references as nouns. Rather than writing "According to [12] there are there are two escape mechanisms" write "According to reference [12] there are two escape mechanisms", or "According to Smith [12] there are two escape mechanisms", or (parenthetically) "There are two escape mechanisms [12]." Similarly, for author year reference styles, rather than writing "According to (Smith 2020) there are there are two escape mechanisms" write "According to Smith (2020) there are two escape mechanisms", or (parenthetically) "There are two escape mechanisms (Smith 2020)". Use LaTeX commands to automatically provide the author name with suitable brackets. The commands vary depending on the bibliography reference package you're using. For instance, under natbib you can write \citet{Smi20} to obtain "Smith [12]" or "Smith (2020)" (depending on the citation style), or you can write \citeauthor{Smi20} to obtain "Smith".
  • Spell out numbers below 13, unless the number is used as a proper noun (e.g. "Section 2") or as part of an arithmetic construct ("element a[6]").
  • Treat software system names as proper nouns. Just as you capitalize "Microsoft Windows", write "We used Git to store past versions.", "We employed a Python script …" or "The generics that Java provides …". Use lowercase (and a code-like font) only when you refer to the actual command-line invocation sequences: "By running git log HEAD we were able to inspect the most recent changes."

See also

License

Creative Commons License

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

More Repositories

1

unix-history-repo

Continuous Unix commit history from 1970 until today
Assembly
6,318
star
2

git-issue

Git-based decentralized issue management
Shell
711
star
3

awesome-msr

A curated repository of software engineering repository mining data sets
374
star
4

UMLGraph

Declarative specification and drawing of UML diagrams
Java
336
star
5

unix-history-make

Code and data to create a git repository representing the Unix source code history
Roff
317
star
6

dgsh

Shell supporting pipelines to and from multiple processes
C
316
star
7

pmonitor

Progress monitor: monitor a job's progress
Shell
185
star
8

cscout

C code refactoring browser
C
176
star
9

unix-v4man

Typeset the Fourth Research Edition Unix Programmer's Manual
Roff
137
star
10

ai-cli-lib

Add AI capabilities to any readline-enabled command-line program
C
109
star
11

ckjm

Chidamber and Kemerer Java Metrics
HTML
84
star
12

unix-architecture

Unix architecture evolution diagrams
Python
80
star
13

alexandria3k

Local relational access to openly-available publication data sets
Python
71
star
14

tokenizer

Convert source code into numerical tokens
C++
61
star
15

cqmetrics

C Quality Metrics
C++
56
star
16

effective-debugging

Code examples used in the book Effective Debugging (Addison-Wesley, 2016)
Java
42
star
17

bib2xhtml

Convert BibTeX references into XHTML
HTML
34
star
18

speak

Reviving the Research Edition Unix speak command
Rust
34
star
19

awesome-rest-apis

Currated collaborative list of open RESTful API web services
32
star
20

simple-rolap

Simple relational online analytical processing
Shell
27
star
21

unix-history-man

Manual page availability across major Unix releases
Perl
25
star
22

greek-vat-data

Retrieve the registration data associated with a Greek VAT number
Java
25
star
23

rdbunit

Unit testing for relational database queries
Python
23
star
24

unix-v3man

Typeset the Third Research Edition Unix Programmer's Manual
Roff
22
star
25

outwit

Command-line tools for accessing the Windows clipboard, registry, databases, document properties, and links.
C
20
star
26

lego-power-scratch

Control Lego power functions from Scratch
Python
17
star
27

oral-history-of-unix

Work by the late Michael Sean Mahoney, Professor of the History of Science at Princeton University, to create a history of Unix
HTML
16
star
28

kbd-layout-fix

Auto-correct text entered with the wrong keyboard layout
AutoHotkey
13
star
29

holiday-card

Simple Java AWT application to draw a Christmas card
Java
12
star
30

linux-history-repo

Reconstruction of the Linux kernel history with correct dates; see https://github.com/dspinellis/linux-history-make
C
11
star
31

socketpipe

Super efficient TCP connection between remote processes
C
11
star
32

manview

Unix man pages online viewer
CSS
10
star
33

OpenMIC

Open source implementation of the maximal information coefficient measure
C++
10
star
34

git-subst

Git plugin for substituting a regular expression with some text across all files under revision control
Shell
10
star
35

dostrace

A tool for logging MS-DOS system calls
C
9
star
36

word-master-ancient-greek

Ancient Greek version of the Wordly look-alike Word Master
JavaScript
9
star
37

greek-classifier

Classify surnames as Greek
Emacs Lisp
8
star
38

fileprune

Prune a file set according to a given age distribution
Roff
8
star
39

Kerberos

DSL-Configurable burglar alarm system for the Raspberry Pi
C
8
star
40

alt-truth

Alternative version of truth
C
7
star
41

linux-history-make

Reconstruct the Linux kernel history with correct dates
Shell
7
star
42

inaugural-analysis

Analysis of US inaugural presidential addresses
Python
7
star
43

Secrets-for-Java-SE

Decode Secrets for Android files on a Java SE platform
Java
6
star
44

cas2svg

Visualize Graphic 2 terminal .cas character descriptions
Perl
6
star
45

dgcmodem

Code fixes for the linuxant dgc modem drivers for 3.x kernels.
Shell
5
star
46

bibtools

Extract BibTeX records to standalone file for sharing with others
Perl
5
star
47

montty

Monitor input coming on a serial port
C
4
star
48

phd-reading-list

A reading list for research students (and their supervisors)
4
star
49

swill

Embedded web server interface library by S. Lampoudi and D. Beazley
C
4
star
50

PPS-monitor

Monitor a point-to-point (PPS) heating automation network link
Python
4
star
51

win32-bitmap-print

Demonstration of Win32 bitmap printing issue
C++
3
star
52

top-trumps-cards

"Top Trumps" cards for chemical elements
Perl
3
star
53

fast-libc

Improve C library performance (currently qsort) through multi-threading
C
3
star
54

mpcd

mpcd: Modular Performant Clone Detector
C++
3
star
55

madplay-playlist

Fork of MAD with a few extra features (see the commits)
C
3
star
56

athens-visitor-info

Information for Athens visitors
2
star
57

taru

Process and display space usage in tar files
Python
2
star
58

grconv

Greek character set converter
C++
2
star
59

git-mine-briefing

Presentation and handouts for MSR briefing on Git mining
HTML
2
star
60

rat-name

Rational C++ Naming Conventions
2
star
61

leap-sec

Leap second testing and visualization
C
2
star
62

gi-example

2
star
63

jit-binary

On demand compile and run programs distributed in source code form
Makefile
2
star
64

code-lifetime

Tools for analyzing the lifetime of code lines and tokens
Perl
2
star
65

sandbox

1
star
66

pcsecrets

Desktop client for the Secrets for Android password manager app
Java
1
star
67

bioinformatics

Adventures on Bioinformatics
1
star
68

CAGR

Compound Annual Growth Rate for Software
Perl
1
star
69

BlogRoll

BlogRoll of Software Data Analytics Blog and Mining Software Repositories
1
star
70

ax-178-logger

AXIO MET AX-178 multimeter logger
Python
1
star
71

elf-notes

Verify operation of ELF note section on Travis
C
1
star
72

scratch-joystick

Code that allows Scratch to read a joystick's values
Python
1
star
73

gi-issues

Issue management repository for gi
1
star
74

Favourite-movies

1
star