diff options
author | Karl Berry <karl@freefriends.org> | 2012-01-18 23:36:04 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-01-18 23:36:04 +0000 |
commit | 19b5e94fbacf01a42023c8ff862c8b80f637e1ef (patch) | |
tree | e053b1b91b3652b0cc6cfd1d380d851ee70cb505 /Master/texmf-dist/tex/latex/cascadilla | |
parent | 0269ce40a8c310fc098d9d2146b7766791c0b77d (diff) |
cascadilla (18jan12)
git-svn-id: svn://tug.org/texlive/trunk@25144 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/cascadilla')
-rw-r--r-- | Master/texmf-dist/tex/latex/cascadilla/cascadilla.cls | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/Master/texmf-dist/tex/latex/cascadilla/cascadilla.cls b/Master/texmf-dist/tex/latex/cascadilla/cascadilla.cls index 4d2d3b3b35a..7f41bc39a6a 100644 --- a/Master/texmf-dist/tex/latex/cascadilla/cascadilla.cls +++ b/Master/texmf-dist/tex/latex/cascadilla/cascadilla.cls @@ -1,6 +1,6 @@ %% cascadilla.cls -%% Copyright 2008-2011 Max Bane -%% Version 1.8.1 +%% Copyright 2008-2012 Max Bane +%% Version 1.8.2 % % This work may be distributed and/or modified under the % conditions of the LaTeX Project Public License, either version 1.3 @@ -22,10 +22,11 @@ % Proceedings Project (http://www.lingref.com/cpp/authors/style.html), which % is used by a number of linguistics conference proceedings (e.g., WCCFL). % Suggestions, questions, and bug reports should be directed to Max Bane at -% bane@uchicago.edu. +% max.bane@gmail.com. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Changes: +% Version 1.8.2: Made footnote marks flush with left edge of body text. % Version 1.8.1: Fixed centering of author line by simplifying \blankline % command - thanks to Christopher Piñón. % Version 1.8: Added author's signature statement at the top of the first page, @@ -55,7 +56,7 @@ % Identification \NeedsTeXFormat{LaTeX2e} -\ProvidesClass{cascadilla}[2011/11/12 v1.8.1 Class for Cascadilla Proceedings +\ProvidesClass{cascadilla}[2012/01/17 v1.8.2 Class for Cascadilla Proceedings Project articles, by Max Bane] %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -203,6 +204,14 @@ date: % Footnotes should be set in 9pt, which is \small \let\footnotesize\small +% Adjust footnotes so that numbers appear flush with margin. +% Implementation inspired by answers at: +% http://tex.stackexchange.com/questions/40976/align-footnote-mark-with-text-margin +\renewcommand{\@makefntext}[1]{% + \settowidth{\@tempdima}{\@thefnmark} \parindent \dimexpr\@tempdima+.75em\relax% + \noindent\makebox[1em][l]{\textsuperscript{\@thefnmark}}#1 +} + % Disable page numbers. Suppressed by "pagenums" class option. \ifthenelse{\boolean{nopagenums}}{ \pagestyle{empty} |