diff options
author | Karl Berry <karl@freefriends.org> | 2012-12-12 00:34:19 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-12-12 00:34:19 +0000 |
commit | 76e9aff676545810d244874dfeb7902698c525d8 (patch) | |
tree | 4b15620a01368781e702a9712bf3d012f6ec6c05 /Master/texmf-dist/doc/latex/uafthesis | |
parent | 1f2b718b5ad8569c1a5b1785bfd0b4d5ac1495ef (diff) |
uafthesis (11dec12)
git-svn-id: svn://tug.org/texlive/trunk@28506 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/uafthesis')
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/Makefile | 28 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/README.md | 16 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/example/example.bib | 26 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/example/example.pdf | bin | 175696 -> 0 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/example/example.tex | 13 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/example/fig/fivebatteries.png | bin | 24839 -> 8855 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/uafthesis/example/fig/onebattery.png | bin | 23847 -> 6651 bytes |
7 files changed, 53 insertions, 30 deletions
diff --git a/Master/texmf-dist/doc/latex/uafthesis/Makefile b/Master/texmf-dist/doc/latex/uafthesis/Makefile new file mode 100644 index 00000000000..06a19ea3168 --- /dev/null +++ b/Master/texmf-dist/doc/latex/uafthesis/Makefile @@ -0,0 +1,28 @@ +example.pdf: + @echo "-> building example.pdf..." + @cd example && ./build.sh > /dev/null + @mv example/example.pdf ./ + +clean: + @echo "-> cleaning..." + @git clean -xdf > /dev/null + @rm example.pdf + +test: clean example.pdf + @# Feel free to make this smarter. + @echo "-> Opening example.pdf in evince. Does it look okay?" + @`evince example.pdf &2> /dev/null` + +publish: example.pdf clean + @echo "-> creating tarball..." + @tar -czf /tmp/uafthesis.tgz --exclude=.git ../uafthesis > /dev/null + curl --form "contribution=uafthesis" \ + --form "name=Joshua Holbrook" \ + --form "email=josh.holbrook@gmail.com" \ + --form "summary=Document class for theses at University of Alaska Fairbanks." \ + --form "version=12.12" \ + --form "directory=/macros/latex/contrib/uafthesis" \ + --form "license=free" \ + --form "freeversion=lppl" \ + --form "file=@/tmp/uafthesis.tgz" \ + http://www.tex.ac.uk/cgi-bin/ctan-upload.cgi diff --git a/Master/texmf-dist/doc/latex/uafthesis/README.md b/Master/texmf-dist/doc/latex/uafthesis/README.md index 6207b30f42f..699f9cd0466 100644 --- a/Master/texmf-dist/doc/latex/uafthesis/README.md +++ b/Master/texmf-dist/doc/latex/uafthesis/README.md @@ -8,7 +8,7 @@ Its development web site is at <https://github.com/jesusabdullah/uafthesis>. -## Contents: +## Basic Contents: * `uafthesis.cls`: The class file itself. * `bib_styles/`: A few common bibliography styles for BibTeX: @@ -18,6 +18,20 @@ Its development web site is at <https://github.com/jesusabdullah/uafthesis>. * `example/`: Contains the source code for `example.pdf`. * `README.md`: This file. +## Branches: + +* `master` is the main branch, and is based on the 2004 thesis class. +* `2006` is a side branch which contains Ryan Woodard's 2006 version of `uafthesis.cls` which also tackled the missing "page" headers problem. A cursory analysis based on `diff uafthesis2004.cls uafthesis2006.cls` indicates that my solution to the "page heading" problem is probably better/easier. However, I may be wrong, and I really appreciate Ryan's work, so it's included in its own branch. + +## Help + +If you don't know how to use LaTeX or need general support, I would recommend the following resources for learning and asking questions: + +* <http://en.wikibooks.org/wiki/LaTeX> +* <http://tex.stackexchange.com> +* <irc://freenode.net/#latex> + +For questions directly pertaining to `uafthesis.tex`, refer to `example/example.pdf` or contact the latest author via [github](https://github.com/jesusabdullah/uafthesis/issues), twitter (http://twitter.com/jesusabdullah) or [email](email:josh.holbrook@gmail.com). ## Call to Arms diff --git a/Master/texmf-dist/doc/latex/uafthesis/example/example.bib b/Master/texmf-dist/doc/latex/uafthesis/example/example.bib deleted file mode 100644 index 35bb7898d96..00000000000 --- a/Master/texmf-dist/doc/latex/uafthesis/example/example.bib +++ /dev/null @@ -1,26 +0,0 @@ -@misc{wikibook, - author = "The Wikimedia Foundation", - title = "LaTeX Wikibook", - howpublished = "web", - year = "2011", - month = "April", - note = "\url{http://en.wikibooks.org/wiki/LaTeX}" -} - -@misc{buildsystems, - author = "Joshua Holbrook and others", - title = "Let's talk LaTeX Build Systems: Or, avoiding the whole ``pdflatex, bibtex, pdflatex, pdflatex, pdflatex'' thing", - howpublished = "web", - year = "2010", - month = "March", - note = "\url{http://www.reddit.com/r/LaTeX/comments/b9wvi/lets_talk_latex_build_systems_or_avoiding_the/}" -} - -@misc{handbook, - author = "UAF Graduate School", - title = "Thesis Format Handbook", - howpublished = "web", - year = "2011", - month = "February", - note = "\url{http://www.uaf.edu/gradsch/forms/Handbook_Thesis_10-11.pdf}" -} diff --git a/Master/texmf-dist/doc/latex/uafthesis/example/example.pdf b/Master/texmf-dist/doc/latex/uafthesis/example/example.pdf Binary files differdeleted file mode 100644 index ee63bfbc6a4..00000000000 --- a/Master/texmf-dist/doc/latex/uafthesis/example/example.pdf +++ /dev/null diff --git a/Master/texmf-dist/doc/latex/uafthesis/example/example.tex b/Master/texmf-dist/doc/latex/uafthesis/example/example.tex index 88a2357c787..1305452cfe0 100644 --- a/Master/texmf-dist/doc/latex/uafthesis/example/example.tex +++ b/Master/texmf-dist/doc/latex/uafthesis/example/example.tex @@ -1,8 +1,9 @@ -\documentclass{uafthesis} +\documentclass{../uafthesis} -\usepackage{fixltx2e} % Allows \(\) in captions, amongst other things. -\usepackage{ppl} % The Paladino font \usepackage{amsmath, amssymb, amsfonts} % Thanks, AMS! +\usepackage{fixltx2e} % Allows \(\) in captions, amongst other things. +%\usepackage{ppl} % The Paladino font (tough to find?) +\usepackage{pxfonts} % Paladino-like fonts \usepackage{graphicx, float} % Graphics stuff \usepackage{verbatim} % Mostly for the comment environment. %\usepackage{chapterbib} % This is an option for those bundling papers. @@ -24,9 +25,15 @@ \department{Dept. of Fresh Beats} \numberofmembers{3} % Make sure this is right! The grad school hates empty % signature lines. +\committeewidth{4in} +\approvedwidth{4in} +\comitteespace{\hfill} +\approvedspace{\hfill} + \prevdegrees{B.A.M.F.} \college{College of Pwning Noobs} + \makesig \maketitle diff --git a/Master/texmf-dist/doc/latex/uafthesis/example/fig/fivebatteries.png b/Master/texmf-dist/doc/latex/uafthesis/example/fig/fivebatteries.png Binary files differindex 766baff117c..5639e9f41b2 100644 --- a/Master/texmf-dist/doc/latex/uafthesis/example/fig/fivebatteries.png +++ b/Master/texmf-dist/doc/latex/uafthesis/example/fig/fivebatteries.png diff --git a/Master/texmf-dist/doc/latex/uafthesis/example/fig/onebattery.png b/Master/texmf-dist/doc/latex/uafthesis/example/fig/onebattery.png Binary files differindex f9cc345c28c..193712344e4 100644 --- a/Master/texmf-dist/doc/latex/uafthesis/example/fig/onebattery.png +++ b/Master/texmf-dist/doc/latex/uafthesis/example/fig/onebattery.png |