Coder Social home page Coder Social logo

general_handouts's Introduction

Course Handouts

This directory contains the source code for compiling course handouts. The documents in this directory are not the assignment handouts.

Each subdirectory within this folder has, at a minimum, a file titled latexmkrc. This is the settings file for latexmk, which will handle juggling the various latex engines preferred by the course staff. A basic latexmkrc file (e.g., for pdflatex) might have the following contents (latexmk documentation):

@default_files = ("main.tex");   # Set the root tex file for the output document
$pdf_mode = 1;                   # tex -> PDF
$auto_rc_use = 1;                # Do not read further latexmkrc files
$warnings_as_errors = 1;         # Elevates warnings to errors.  Enforces cleaner code.
$pdflatex = "pdflatex -halt-on-error -interaction=batchmode %O %S";
                                 # Forces latexmk to stop and quit if it encounters an error
$jobname = "output_name";        # This is the name of the output PDF file
$silent = 1                      # For quieter output on the terminal.

Feel free to customize this as you desire, including adding more files, directories, and media. There is only one requirements:

IT MUST BE POSSIBLE TO COMPILE EACH DOCUMENT USING ONLY THE FOLLOWING COMMAND:

$ latexmk

A properly setup latexmkrc file can handle any special compilation options you may require. Put those options in the latexmkrc file so that other course staff can compile your document with the command above.

Other commands that might be helpful include:

  • $ latexmk -pvc: (preview continuously) This will run latexmk continuously, allowing you to immediately view changes to your output document as you save source files.
  • $ latexmk -c: This will remove all auxiliary files other than the final output PDF.
  • $ latexmk -C: This will remove all output files (including the final output PDF).

general_handouts's People

Contributors

mrplants avatar abanuelo avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.