Writing & LaTeX - BKJackson/BKJackson_Wiki GitHub Wiki
On Writing
MIT Resources for Mathematics Research Writing Includes LaTeX resources.
The Science of Scientific Writing G. Gopen and J. Swan (1990), American Scientist.
PhD: How to write a great research paper Simon Peyton-Jones, Microsoft Research. (video)
Writing a Research Paper in Mathematics A. Reiter (1995).
Tips on Research Paper Writing, Style, Tone
Science Writing Pet Peeves One biologist's list of pet peeves.
LaTeX
LaTeX Project Home
Obtaining LaTeX From official LaTeX project home.
MacTeX Download page.
MIT 2015 Intro to LaTeX Good, up-to-date summary document.
American Mathematical Society LaTeX Resource Page
LaTeX for academics and researchers who (think they) don’t need it Peter Flom.
CTAN - Comprehensive TEX Archive Network
CTAN Home Homepage
CTAN root directory
TeX/LaTeX Examples and Templates
The TeX showcase on tug.org
Free LaTeX Templates
Overleaf LaTeX templates
LaTeX Formatting for Thesis/Dissertation Preparation
Notetaking with LaTeX
LaTeX templates for Notetaking A stackexchange conversation.
How to add Todo Notes in LaTeX Using the todonotes package
LaTeX and arXiv
Notes on posting to the arXiv UC Berkeley math notes
Submission instructions for posting to arXiv US Davis math notes
Tips for Submitting to arXiv for the first time Mandy Mejia
MacTeX 2015
MacTeX Download page.
Fixing links and paths in MacTEX-2015 for Mac OS X El Capitan Herbert Schulz.
TeXShop
To remove Aux files that might be causing typesetting problems, click File -> Trash Aux Files (Ctl-Cmd-A)
BibDesk
Importing BibTeX records in BibDesk from Title, DOI, or just the PDF YouTube intro by Ken Mankoff.
mankoff/BibDeskAppleScripts
BibDesk AppleScripts by Andreas Fischlin
TeXShop & BibDesk:
- Enable BibDesk plugin by checking TeXShop -> Preferences -> Source -> Editor -> BibDesk Completions.
- The required bib file must be open to be used with the current tex document.
List of Utilities Included with MacTeX (2015)
TeX - main TeX program
XeTeX - extended TeX version with Unicode and native font support
LaTeX - macro package
AMSTeX - macro package
ConTeXt - macro package, includes and works with LuaTeX and XeTeX
TeXShop - GUI front end for TeX Start Here Note: Had to change engine path to /Library/TeX/texbin to make typeset work.
Ghoscript-9.16 - postscript interpreter used by some TeX utilities. But can use the /usr/bin/pstopdf distiller that comes with Mac OS X.
BibDesk - editor for BibTeX databases
LaTeXiT - a utility to typeset LaTeX equations and export the resulting PDF by drag and drop
TeX Live Utility - Package manager for updating TeX Live 2015 packages. Can configure paper size in TeX. Calls tlmgr, the command line utility.
Excalibur - a spell checker for TeX source code
BasicTeX-2015
Useful commands to know:
tlmgr update --list
tlmgr update --all
tlmgr update --self
Hello LaTeX Example
Write a .tex file in a text editor, save in MiniPaper folder (or whatever name):
% this is hello.tex
\documentclass{article}
\begin{document}
Hello, \LaTeX!
\end{document}
Compile using Makefile
$ cd ~/MiniPaper/
$ make hello.pdf
Preview the results
$ evince hello.pdf &
Select templates using \documentclass