├── .gitignore ├── Article-Journal ├── ACMSIG │ ├── acm_proc_article-sp.cls │ ├── flies-eps-converted-to.pdf │ ├── flies.eps │ ├── fly-eps-converted-to.pdf │ ├── fly.eps │ ├── rosette.ps │ ├── sigproc-sp.pdf │ ├── sigproc-sp.tex │ └── sigproc.bib ├── ColorTitle │ ├── article_1.pdf │ └── article_1.tex ├── ICML12 │ ├── algorithm.sty │ ├── algorithmic.sty │ ├── example_paper.bib │ ├── example_paper.pdf │ ├── example_paper.tex │ ├── fancyhdr.sty │ ├── icml2012.bst │ ├── icml2012.doc │ ├── icml2012.sty │ ├── icml_numpapers.eps │ ├── icml_numpapers.pdf │ └── natbib.sty ├── JournalArticle │ ├── article_2.pdf │ └── article_2.tex ├── NIPS13 │ ├── nips13submit_e.sty │ ├── nips2013.pdf │ └── nips2013.tex └── PNAS │ ├── PNASTMPL.pdf │ ├── PNAStwoF.sty │ ├── lion.eps │ ├── pnastmpl.tex │ └── pnastwo.cls ├── CV └── Friggeri │ ├── bibliography.bib │ ├── cv_10.pdf │ ├── cv_10.xtx │ └── friggeri-cv.cls ├── Essay ├── essay_2.pdf ├── essay_2.tex ├── fish.png └── sample.bib ├── LICENSE ├── Previews ├── Article-ACMSIG.png ├── Article-ColorTitle.png ├── Article-ICML12.png ├── Article-JournalArticle.png ├── Article-NIPS13.png ├── Article-PNAS.png ├── CV-Friggeri.png ├── Essay.png └── ProblemSet-Kleinberg.png ├── ProblemSet └── Kleinberg │ ├── PSet.pdf │ └── PSet.tex └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Temporary Latexian Files 2 | TSWLatexianTemp* 3 | 4 | ## Core latex/pdflatex auxiliary files: 5 | *.aux 6 | *.lof 7 | *.log 8 | *.lot 9 | *.fls 10 | *.out 11 | *.toc 12 | 13 | ## Intermediate documents: 14 | *.dvi 15 | # these rules might exclude image files for figures etc. 16 | # *.ps 17 | # *.eps 18 | # *.pdf 19 | 20 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 21 | *.bbl 22 | *.bcf 23 | *.blg 24 | *-blx.aux 25 | *-blx.bib 26 | *.run.xml 27 | 28 | ## Build tool auxiliary files: 29 | *.fdb_latexmk 30 | *.synctex.gz 31 | *.synctex.gz(busy) 32 | *.pdfsync 33 | 34 | ## Auxiliary and intermediate files from other packages: 35 | 36 | # algorithms 37 | *.alg 38 | *.loa 39 | 40 | # amsthm 41 | *.thm 42 | 43 | # beamer 44 | *.nav 45 | *.snm 46 | *.vrb 47 | 48 | # glossaries 49 | *.acn 50 | *.acr 51 | *.glg 52 | *.glo 53 | *.gls 54 | 55 | # hyperref 56 | *.brf 57 | 58 | # listings 59 | *.lol 60 | 61 | # makeidx 62 | *.idx 63 | *.ilg 64 | *.ind 65 | *.ist 66 | 67 | # minitoc 68 | *.maf 69 | *.mtc 70 | *.mtc0 71 | 72 | # minted 73 | *.pyg 74 | 75 | # nomencl 76 | *.nlo 77 | 78 | # sagetex 79 | *.sagetex.sage 80 | *.sagetex.py 81 | *.sagetex.scmd 82 | 83 | # sympy 84 | *.sout 85 | *.sympy 86 | sympy-plots-for-*.tex/ 87 | 88 | # todonotes 89 | *.tdo 90 | 91 | # xindy 92 | *.xdy 93 | -------------------------------------------------------------------------------- /Article-Journal/ACMSIG/flies-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ACMSIG/flies-eps-converted-to.pdf -------------------------------------------------------------------------------- /Article-Journal/ACMSIG/fly-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ACMSIG/fly-eps-converted-to.pdf -------------------------------------------------------------------------------- /Article-Journal/ACMSIG/rosette.ps: -------------------------------------------------------------------------------- 1 | %! 2 | %%BoundingBox: 124.38 124.38 487.61 487.61 3 | % Cookbook Example Program from First Printing, Revised 7 Jan 1985 4 | % Program: Repeated Shapes Number: 6 5 | %----------------------------------------------------------------------------- 6 | % 7 | % This program prints a rosette 8 | % design by defining a section of 9 | % that design and printing that 10 | % section repeatedly. This program 11 | % illustrates the ``for'' and 12 | % "arc" operators, and it shows 13 | % how coordinate transformations 14 | % can be nested so as to use the 15 | % most convenient coordinate 16 | % system for each part of a 17 | % design. 18 | /inch {72 mul} def 19 | 20 | /wedge % Define an ``ice cream cone'' 21 | { newpath % shape by means of the ``arc'' 22 | 0 0 moveto % operator. This shape will have a 23 | 1 0 translate % 30 degree angle topped off with 24 | 15 rotate % a semicircle. Set the path's 25 | 0 15 sin translate % first point at the current 26 | 0 0 15 sin -90 90 arc % origin. Next, move the origin to 27 | closepath % the center of the semicircle by 28 | } def % translating to the right 1 unit, 29 | % rotating counter-clockwise by 15 30 | % degrees, and translating ``up'' 31 | % in the rotated system by the 32 | % radius of the semicircle. The 33 | % ``arc'' operator includes a 34 | % straight line to the initial 35 | % point of the arc and a curved 36 | % section to the end of the arc. 37 | % Note that the semicircle goes 38 | % from -90 degrees to 90 degrees 39 | % in the rotated coordinate 40 | % system. 41 | 42 | gsave 43 | 4.25 inch 4.25 inch translate % Move into position for the 44 | % rosette. 45 | 1.75 inch 1.75 inch scale % Make the edges of the rosette 1 46 | % 3/4 inches long. 47 | 0.02 setlinewidth % Use a 7/200 inch thick line. 48 | 2 1 13 % Set up the ``for'' operator to 49 | % iterate 12 times, pushing 2 onto 50 | % the stack the first time, 3 the 51 | % next time, ... , and 13 the last 52 | % time. 53 | { % The last argument for ``for'' is 54 | % the sequence of operations to be 55 | % repeated. This sequence must be 56 | % enclosed by braces. 57 | 13 div setgray % Divide the loop index by 13 to 58 | % set a gray value. 59 | gsave % Enclose the ``wedge'' operation 60 | wedge % in a ``gsave''-``grestore'' 61 | % pair, as it will mess up the 62 | % coordinate system. 63 | gsave % Save the wedge path for use 64 | % after the ``fill''. 65 | fill 66 | grestore 67 | 0 setgray stroke % Draw a black border around the 68 | % wedge. 69 | grestore % Get out of the coordinate system 70 | % left by wedge. 71 | 30 rotate % Set up for the next section. 72 | } for % Close the last argument and 73 | % execute the ``for'' operator. 74 | grestore 75 | showpage 76 | 77 | -------------------------------------------------------------------------------- /Article-Journal/ACMSIG/sigproc-sp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ACMSIG/sigproc-sp.pdf -------------------------------------------------------------------------------- /Article-Journal/ACMSIG/sigproc.bib: -------------------------------------------------------------------------------- 1 | @ARTICLE{bowman:reasoning, 2 | AUTHOR = "Mic Bowman and Saumya K. Debray and Larry L. Peterson", 3 | TITLE = "Reasoning About Naming Systems", 4 | JOURNAL = "ACM Trans. Program. Lang. Syst.", 5 | VOLUME = {15}, 6 | NUMBER = {5}, 7 | PAGES = {795-825}, 8 | MONTH = "November", 9 | YEAR = {1993} } 10 | 11 | @ARTICLE{braams:babel, 12 | AUTHOR = "Johannes Braams", 13 | TITLE = "Babel, a Multilingual Style-Option System for Use with LaTeX's Standard Document Styles", 14 | JOURNAL = {TUGboat}, 15 | VOLUME = {12}, 16 | NUMBER = {2}, 17 | PAGES = {291-301}, 18 | MONTH = "June", 19 | YEAR = {1991} } 20 | 21 | @INPROCEEDINGS{clark:pct, 22 | AUTHOR = "Malcolm Clark", 23 | TITLE = "Post Congress Tristesse", 24 | BOOKTITLE = "TeX90 Conference Proceedings", 25 | PAGES = "84-89", 26 | ORGANIZATION = "TeX Users Group", 27 | MONTH = "March", 28 | YEAR = {1991} } 29 | 30 | @ARTICLE{herlihy:methodology, 31 | AUTHOR = "Maurice Herlihy", 32 | TITLE = "A Methodology for Implementing Highly Concurrent 33 | Data Objects", 34 | JOURNAL = {ACM Trans. Program. Lang. Syst.}, 35 | VOLUME = {15}, 36 | NUMBER = {5}, 37 | PAGES = {745-770}, 38 | MONTH = "November", 39 | YEAR = {1993} } 40 | 41 | @BOOK{Lamport:LaTeX, 42 | AUTHOR = "Leslie Lamport", 43 | TITLE = "LaTeX User's Guide and Document Reference Manual", 44 | PUBLISHER = "Addison-Wesley Publishing Company", 45 | ADDRESS = "Reading, Massachusetts", 46 | YEAR = "1986" } 47 | 48 | @BOOK{salas:calculus, 49 | AUTHOR = "S.L. Salas and Einar Hille", 50 | TITLE = "Calculus: One and Several Variable", 51 | PUBLISHER = "John Wiley and Sons", 52 | ADDRESS = "New York", 53 | YEAR = "1978" } 54 | 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /Article-Journal/ColorTitle/article_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ColorTitle/article_1.pdf -------------------------------------------------------------------------------- /Article-Journal/ColorTitle/article_1.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % Large Colored Title Article 3 | % LaTeX Template 4 | % Version 1.1 (25/11/12) 5 | % 6 | % This template has been downloaded from: 7 | % http://www.LaTeXTemplates.com 8 | % 9 | % Original author: 10 | % Frits Wenneker (http://www.howtotex.com) 11 | % 12 | % License: 13 | % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) 14 | % 15 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 | 17 | %---------------------------------------------------------------------------------------- 18 | % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS 19 | %---------------------------------------------------------------------------------------- 20 | 21 | \documentclass[DIV=calc, paper=a4, fontsize=11pt, twocolumn]{scrartcl} % A4 paper and 11pt font size 22 | 23 | \usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template 24 | \usepackage[english]{babel} % English language/hyphenation 25 | \usepackage[protrusion=true,expansion=true]{microtype} % Better typography 26 | \usepackage{amsmath,amsfonts,amsthm} % Math packages 27 | \usepackage[svgnames]{xcolor} % Enabling colors by their 'svgnames' 28 | \usepackage[hang, small,labelfont=bf,up,textfont=it,up]{caption} % Custom captions under/above floats in tables or figures 29 | \usepackage{booktabs} % Horizontal rules in tables 30 | \usepackage{fix-cm} % Custom font sizes - used for the initial letter in the document 31 | 32 | \usepackage{sectsty} % Enables custom section titles 33 | \allsectionsfont{\usefont{OT1}{phv}{b}{n}} % Change the font of all section commands 34 | 35 | \usepackage{fancyhdr} % Needed to define custom headers/footers 36 | \pagestyle{fancy} % Enables the custom headers/footers 37 | \usepackage{lastpage} % Used to determine the number of pages in the document (for "Page X of Total") 38 | 39 | % Headers - all currently empty 40 | \lhead{} 41 | \chead{} 42 | \rhead{} 43 | 44 | % Footers 45 | \lfoot{} 46 | \cfoot{} 47 | \rfoot{\footnotesize Page \thepage\ of \pageref{LastPage}} % "Page 1 of 2" 48 | 49 | \renewcommand{\headrulewidth}{0.0pt} % No header rule 50 | \renewcommand{\footrulewidth}{0.4pt} % Thin footer rule 51 | 52 | \usepackage{lettrine} % Package to accentuate the first letter of the text 53 | \newcommand{\initial}[1]{ % Defines the command and style for the first letter 54 | \lettrine[lines=3,lhang=0.3,nindent=0em]{ 55 | \color{DarkGoldenrod} 56 | {\textsf{#1}}}{}} 57 | 58 | %---------------------------------------------------------------------------------------- 59 | % TITLE SECTION 60 | %---------------------------------------------------------------------------------------- 61 | 62 | \usepackage{titling} % Allows custom title configuration 63 | 64 | \newcommand{\HorRule}{\color{DarkGoldenrod} \rule{\linewidth}{1pt}} % Defines the gold horizontal rule around the title 65 | 66 | \pretitle{\vspace{-30pt} \begin{flushleft} \HorRule \fontsize{50}{50} \usefont{OT1}{phv}{b}{n} \color{DarkRed} \selectfont} % Horizontal rule before the title 67 | 68 | \title{Article Title} % Your article title 69 | 70 | \posttitle{\par\end{flushleft}\vskip 0.5em} % Whitespace under the title 71 | 72 | \preauthor{\begin{flushleft}\large \lineskip 0.5em \usefont{OT1}{phv}{b}{sl} \color{DarkRed}} % Author font configuration 73 | 74 | \author{John Smith, } % Your name 75 | 76 | \postauthor{\footnotesize \usefont{OT1}{phv}{m}{sl} \color{Black} % Configuration for the institution name 77 | University of California % Your institution 78 | 79 | \par\end{flushleft}\HorRule} % Horizontal rule after the title 80 | 81 | \date{} % Add a date here if you would like one to appear underneath the title block 82 | 83 | %---------------------------------------------------------------------------------------- 84 | 85 | \begin{document} 86 | 87 | \maketitle % Print the title 88 | 89 | \thispagestyle{fancy} % Enabling the custom headers/footers for the first page 90 | 91 | %---------------------------------------------------------------------------------------- 92 | % ABSTRACT 93 | %---------------------------------------------------------------------------------------- 94 | 95 | % The first character should be within \initial{} 96 | \initial{H}\textbf{ere is some sample text to show the initial in the introductory paragraph of this template article. The color and lineheight of the initial can be modified in the preamble of this document.} 97 | 98 | %---------------------------------------------------------------------------------------- 99 | % ARTICLE CONTENTS 100 | %---------------------------------------------------------------------------------------- 101 | 102 | \section*{Section 1} 103 | 104 | \lipsum[1-3] % Dummy text 105 | 106 | \begin{align} 107 | A = 108 | \begin{bmatrix} 109 | A_{11} & A_{21} \\ 110 | A_{21} & A_{22} 111 | \end{bmatrix} 112 | \end{align} 113 | 114 | \lipsum[4] % Dummy text 115 | 116 | %------------------------------------------------ 117 | 118 | \subsection*{Subsection 1} 119 | 120 | \lipsum[5] % Dummy text 121 | 122 | \begin{itemize} 123 | \item First item in a list 124 | \item Second item in a list 125 | \item Third item in a list 126 | \end{itemize} 127 | 128 | \lipsum[6] % Dummy text 129 | 130 | %------------------------------------------------ 131 | 132 | \subsection*{Subsection 2} 133 | 134 | \lipsum[7] % Dummy text 135 | 136 | \begin{table} 137 | \caption{Random table} 138 | \centering 139 | \begin{tabular}{llr} 140 | \toprule 141 | \multicolumn{2}{c}{Name} \\ 142 | \cmidrule(r){1-2} 143 | First name & Last Name & Grade \\ 144 | \midrule 145 | John & Doe & $7.5$ \\ 146 | Richard & Miles & $2$ \\ 147 | \bottomrule 148 | \end{tabular} 149 | \end{table} 150 | 151 | %------------------------------------------------ 152 | 153 | \section*{Section 2} 154 | 155 | \lipsum[8] % Dummy text 156 | 157 | \begin{description} 158 | \item[First] This is the first item 159 | \item[Last] This is the last item 160 | \end{description} 161 | 162 | \lipsum[9] % Dummy text 163 | 164 | %---------------------------------------------------------------------------------------- 165 | % REFERENCE LIST 166 | %---------------------------------------------------------------------------------------- 167 | 168 | \begin{thebibliography}{99} % Bibliography - this is intentionally simple in this template 169 | 170 | \bibitem[Figueredo and Wolf, 2009]{Figueredo:2009dg} 171 | Figueredo, A.~J. and Wolf, P. S.~A. (2009). 172 | \newblock Assortative pairing and life history strategy - a cross-cultural 173 | study. 174 | \newblock {\em Human Nature}, 20:317--330. 175 | 176 | \end{thebibliography} 177 | 178 | %---------------------------------------------------------------------------------------- 179 | 180 | \end{document} -------------------------------------------------------------------------------- /Article-Journal/ICML12/algorithm.sty: -------------------------------------------------------------------------------- 1 | % ALGORITHM STYLE -- Released 8 April 1996 2 | % for LaTeX-2e 3 | % Copyright -- 1994 Peter Williams 4 | % E-mail Peter.Williams@dsto.defence.gov.au 5 | \NeedsTeXFormat{LaTeX2e} 6 | \ProvidesPackage{algorithm} 7 | \typeout{Document Style `algorithm' - floating environment} 8 | 9 | \RequirePackage{float} 10 | \RequirePackage{ifthen} 11 | \newcommand{\ALG@within}{nothing} 12 | \newboolean{ALG@within} 13 | \setboolean{ALG@within}{false} 14 | \newcommand{\ALG@floatstyle}{ruled} 15 | \newcommand{\ALG@name}{Algorithm} 16 | \newcommand{\listalgorithmname}{List of \ALG@name s} 17 | 18 | % Declare Options 19 | % first appearance 20 | \DeclareOption{plain}{ 21 | \renewcommand{\ALG@floatstyle}{plain} 22 | } 23 | \DeclareOption{ruled}{ 24 | \renewcommand{\ALG@floatstyle}{ruled} 25 | } 26 | \DeclareOption{boxed}{ 27 | \renewcommand{\ALG@floatstyle}{boxed} 28 | } 29 | % then numbering convention 30 | \DeclareOption{part}{ 31 | \renewcommand{\ALG@within}{part} 32 | \setboolean{ALG@within}{true} 33 | } 34 | \DeclareOption{chapter}{ 35 | \renewcommand{\ALG@within}{chapter} 36 | \setboolean{ALG@within}{true} 37 | } 38 | \DeclareOption{section}{ 39 | \renewcommand{\ALG@within}{section} 40 | \setboolean{ALG@within}{true} 41 | } 42 | \DeclareOption{subsection}{ 43 | \renewcommand{\ALG@within}{subsection} 44 | \setboolean{ALG@within}{true} 45 | } 46 | \DeclareOption{subsubsection}{ 47 | \renewcommand{\ALG@within}{subsubsection} 48 | \setboolean{ALG@within}{true} 49 | } 50 | \DeclareOption{nothing}{ 51 | \renewcommand{\ALG@within}{nothing} 52 | \setboolean{ALG@within}{true} 53 | } 54 | \DeclareOption*{\edef\ALG@name{\CurrentOption}} 55 | 56 | % ALGORITHM 57 | % 58 | \ProcessOptions 59 | \floatstyle{\ALG@floatstyle} 60 | \ifthenelse{\boolean{ALG@within}}{ 61 | \ifthenelse{\equal{\ALG@within}{part}} 62 | {\newfloat{algorithm}{htbp}{loa}[part]}{} 63 | \ifthenelse{\equal{\ALG@within}{chapter}} 64 | {\newfloat{algorithm}{htbp}{loa}[chapter]}{} 65 | \ifthenelse{\equal{\ALG@within}{section}} 66 | {\newfloat{algorithm}{htbp}{loa}[section]}{} 67 | \ifthenelse{\equal{\ALG@within}{subsection}} 68 | {\newfloat{algorithm}{htbp}{loa}[subsection]}{} 69 | \ifthenelse{\equal{\ALG@within}{subsubsection}} 70 | {\newfloat{algorithm}{htbp}{loa}[subsubsection]}{} 71 | \ifthenelse{\equal{\ALG@within}{nothing}} 72 | {\newfloat{algorithm}{htbp}{loa}}{} 73 | }{ 74 | \newfloat{algorithm}{htbp}{loa} 75 | } 76 | \floatname{algorithm}{\ALG@name} 77 | 78 | \newcommand{\listofalgorithms}{\listof{algorithm}{\listalgorithmname}} 79 | 80 | -------------------------------------------------------------------------------- /Article-Journal/ICML12/algorithmic.sty: -------------------------------------------------------------------------------- 1 | % ALGORITHMIC STYLE -- Released 8 APRIL 1996 2 | % for LaTeX version 2e 3 | % Copyright -- 1994 Peter Williams 4 | % E-mail PeterWilliams@dsto.defence.gov.au 5 | % 6 | % Modified by Alex Smola (08/2000) 7 | % E-mail Alex.Smola@anu.edu.au 8 | % 9 | \NeedsTeXFormat{LaTeX2e} 10 | \ProvidesPackage{algorithmic} 11 | \typeout{Document Style `algorithmic' - environment} 12 | % 13 | \RequirePackage{ifthen} 14 | \RequirePackage{calc} 15 | \newboolean{ALC@noend} 16 | \setboolean{ALC@noend}{false} 17 | \newcounter{ALC@line} 18 | \newcounter{ALC@rem} 19 | \newlength{\ALC@tlm} 20 | % 21 | \DeclareOption{noend}{\setboolean{ALC@noend}{true}} 22 | % 23 | \ProcessOptions 24 | % 25 | % ALGORITHMIC 26 | \newcommand{\algorithmicrequire}{\textbf{Require:}} 27 | \newcommand{\algorithmicensure}{\textbf{Ensure:}} 28 | \newcommand{\algorithmiccomment}[1]{\{#1\}} 29 | \newcommand{\algorithmicend}{\textbf{end}} 30 | \newcommand{\algorithmicif}{\textbf{if}} 31 | \newcommand{\algorithmicthen}{\textbf{then}} 32 | \newcommand{\algorithmicelse}{\textbf{else}} 33 | \newcommand{\algorithmicelsif}{\algorithmicelse\ \algorithmicif} 34 | \newcommand{\algorithmicendif}{\algorithmicend\ \algorithmicif} 35 | \newcommand{\algorithmicfor}{\textbf{for}} 36 | \newcommand{\algorithmicforall}{\textbf{for all}} 37 | \newcommand{\algorithmicdo}{\textbf{do}} 38 | \newcommand{\algorithmicendfor}{\algorithmicend\ \algorithmicfor} 39 | \newcommand{\algorithmicwhile}{\textbf{while}} 40 | \newcommand{\algorithmicendwhile}{\algorithmicend\ \algorithmicwhile} 41 | \newcommand{\algorithmicloop}{\textbf{loop}} 42 | \newcommand{\algorithmicendloop}{\algorithmicend\ \algorithmicloop} 43 | \newcommand{\algorithmicrepeat}{\textbf{repeat}} 44 | \newcommand{\algorithmicuntil}{\textbf{until}} 45 | 46 | %changed by alex smola 47 | \newcommand{\algorithmicinput}{\textbf{input}} 48 | \newcommand{\algorithmicoutput}{\textbf{output}} 49 | \newcommand{\algorithmicset}{\textbf{set}} 50 | \newcommand{\algorithmictrue}{\textbf{true}} 51 | \newcommand{\algorithmicfalse}{\textbf{false}} 52 | \newcommand{\algorithmicand}{\textbf{and\ }} 53 | \newcommand{\algorithmicor}{\textbf{or\ }} 54 | \newcommand{\algorithmicfunction}{\textbf{function}} 55 | \newcommand{\algorithmicendfunction}{\algorithmicend\ \algorithmicfunction} 56 | \newcommand{\algorithmicmain}{\textbf{main}} 57 | \newcommand{\algorithmicendmain}{\algorithmicend\ \algorithmicmain} 58 | %end changed by alex smola 59 | 60 | \def\ALC@item[#1]{% 61 | \if@noparitem \@donoparitem 62 | \else \if@inlabel \indent \par \fi 63 | \ifhmode \unskip\unskip \par \fi 64 | \if@newlist \if@nobreak \@nbitem \else 65 | \addpenalty\@beginparpenalty 66 | \addvspace\@topsep \addvspace{-\parskip}\fi 67 | \else \addpenalty\@itempenalty \addvspace\itemsep 68 | \fi 69 | \global\@inlabeltrue 70 | \fi 71 | \everypar{\global\@minipagefalse\global\@newlistfalse 72 | \if@inlabel\global\@inlabelfalse \hskip -\parindent \box\@labels 73 | \penalty\z@ \fi 74 | \everypar{}}\global\@nobreakfalse 75 | \if@noitemarg \@noitemargfalse \if@nmbrlist \refstepcounter{\@listctr}\fi \fi 76 | \sbox\@tempboxa{\makelabel{#1}}% 77 | \global\setbox\@labels 78 | \hbox{\unhbox\@labels \hskip \itemindent 79 | \hskip -\labelwidth \hskip -\ALC@tlm 80 | \ifdim \wd\@tempboxa >\labelwidth 81 | \box\@tempboxa 82 | \else \hbox to\labelwidth {\unhbox\@tempboxa}\fi 83 | \hskip \ALC@tlm}\ignorespaces} 84 | % 85 | \newenvironment{algorithmic}[1][0]{ 86 | \let\@item\ALC@item 87 | \newcommand{\ALC@lno}{% 88 | \ifthenelse{\equal{\arabic{ALC@rem}}{0}} 89 | {{\footnotesize \arabic{ALC@line}:}}{}% 90 | } 91 | \let\@listii\@listi 92 | \let\@listiii\@listi 93 | \let\@listiv\@listi 94 | \let\@listv\@listi 95 | \let\@listvi\@listi 96 | \let\@listvii\@listi 97 | \newenvironment{ALC@g}{ 98 | \begin{list}{\ALC@lno}{ \itemsep\z@ \itemindent\z@ 99 | \listparindent\z@ \rightmargin\z@ 100 | \topsep\z@ \partopsep\z@ \parskip\z@\parsep\z@ 101 | \leftmargin 1em 102 | \addtolength{\ALC@tlm}{\leftmargin} 103 | } 104 | } 105 | {\end{list}} 106 | \newcommand{\ALC@it}{\addtocounter{ALC@line}{1}\addtocounter{ALC@rem}{1}\ifthenelse{\equal{\arabic{ALC@rem}}{#1}}{\setcounter{ALC@rem}{0}}{}\item} 107 | \newcommand{\ALC@com}[1]{\ifthenelse{\equal{##1}{default}}% 108 | {}{\ \algorithmiccomment{##1}}} 109 | \newcommand{\REQUIRE}{\item[\algorithmicrequire]} 110 | \newcommand{\ENSURE}{\item[\algorithmicensure]} 111 | \newcommand{\STATE}{\ALC@it} 112 | \newcommand{\COMMENT}[1]{\algorithmiccomment{##1}} 113 | %changes by alex smola 114 | \newcommand{\INPUT}{\item[\algorithmicinput]} 115 | \newcommand{\OUTPUT}{\item[\algorithmicoutput]} 116 | \newcommand{\SET}{\item[\algorithmicset]} 117 | % \newcommand{\TRUE}{\algorithmictrue} 118 | % \newcommand{\FALSE}{\algorithmicfalse} 119 | \newcommand{\AND}{\algorithmicand} 120 | \newcommand{\OR}{\algorithmicor} 121 | \newenvironment{ALC@func}{\begin{ALC@g}}{\end{ALC@g}} 122 | \newenvironment{ALC@main}{\begin{ALC@g}}{\end{ALC@g}} 123 | %end changes by alex smola 124 | \newenvironment{ALC@if}{\begin{ALC@g}}{\end{ALC@g}} 125 | \newenvironment{ALC@for}{\begin{ALC@g}}{\end{ALC@g}} 126 | \newenvironment{ALC@whl}{\begin{ALC@g}}{\end{ALC@g}} 127 | \newenvironment{ALC@loop}{\begin{ALC@g}}{\end{ALC@g}} 128 | \newenvironment{ALC@rpt}{\begin{ALC@g}}{\end{ALC@g}} 129 | \renewcommand{\\}{\@centercr} 130 | \newcommand{\IF}[2][default]{\ALC@it\algorithmicif\ ##2\ \algorithmicthen% 131 | \ALC@com{##1}\begin{ALC@if}} 132 | \newcommand{\SHORTIF}[2]{\ALC@it\algorithmicif\ ##1\ 133 | \algorithmicthen\ {##2}} 134 | \newcommand{\ELSE}[1][default]{\end{ALC@if}\ALC@it\algorithmicelse% 135 | \ALC@com{##1}\begin{ALC@if}} 136 | \newcommand{\ELSIF}[2][default]% 137 | {\end{ALC@if}\ALC@it\algorithmicelsif\ ##2\ \algorithmicthen% 138 | \ALC@com{##1}\begin{ALC@if}} 139 | \newcommand{\FOR}[2][default]{\ALC@it\algorithmicfor\ ##2\ \algorithmicdo% 140 | \ALC@com{##1}\begin{ALC@for}} 141 | \newcommand{\FORALL}[2][default]{\ALC@it\algorithmicforall\ ##2\ % 142 | \algorithmicdo% 143 | \ALC@com{##1}\begin{ALC@for}} 144 | \newcommand{\SHORTFORALL}[2]{\ALC@it\algorithmicforall\ ##1\ % 145 | \algorithmicdo\ {##2}} 146 | \newcommand{\WHILE}[2][default]{\ALC@it\algorithmicwhile\ ##2\ % 147 | \algorithmicdo% 148 | \ALC@com{##1}\begin{ALC@whl}} 149 | \newcommand{\LOOP}[1][default]{\ALC@it\algorithmicloop% 150 | \ALC@com{##1}\begin{ALC@loop}} 151 | %changed by alex smola 152 | \newcommand{\FUNCTION}[2][default]{\ALC@it\algorithmicfunction\ ##2\ % 153 | \ALC@com{##1}\begin{ALC@func}} 154 | \newcommand{\MAIN}[2][default]{\ALC@it\algorithmicmain\ ##2\ % 155 | \ALC@com{##1}\begin{ALC@main}} 156 | %end changed by alex smola 157 | \newcommand{\REPEAT}[1][default]{\ALC@it\algorithmicrepeat% 158 | \ALC@com{##1}\begin{ALC@rpt}} 159 | \newcommand{\UNTIL}[1]{\end{ALC@rpt}\ALC@it\algorithmicuntil\ ##1} 160 | \ifthenelse{\boolean{ALC@noend}}{ 161 | \newcommand{\ENDIF}{\end{ALC@if}} 162 | \newcommand{\ENDFOR}{\end{ALC@for}} 163 | \newcommand{\ENDWHILE}{\end{ALC@whl}} 164 | \newcommand{\ENDLOOP}{\end{ALC@loop}} 165 | \newcommand{\ENDFUNCTION}{\end{ALC@func}} 166 | \newcommand{\ENDMAIN}{\end{ALC@main}} 167 | }{ 168 | \newcommand{\ENDIF}{\end{ALC@if}\ALC@it\algorithmicendif} 169 | \newcommand{\ENDFOR}{\end{ALC@for}\ALC@it\algorithmicendfor} 170 | \newcommand{\ENDWHILE}{\end{ALC@whl}\ALC@it\algorithmicendwhile} 171 | \newcommand{\ENDLOOP}{\end{ALC@loop}\ALC@it\algorithmicendloop} 172 | \newcommand{\ENDFUNCTION}{\end{ALC@func}\ALC@it\algorithmicendfunction} 173 | \newcommand{\ENDMAIN}{\end{ALC@main}\ALC@it\algorithmicendmain} 174 | } 175 | \renewcommand{\@toodeep}{} 176 | \begin{list}{\ALC@lno}{\setcounter{ALC@line}{0}\setcounter{ALC@rem}{0}% 177 | \itemsep\z@ \itemindent\z@ \listparindent\z@% 178 | \partopsep\z@ \parskip\z@ \parsep\z@% 179 | \labelsep 0.5em \topsep 0.2em% 180 | \ifthenelse{\equal{#1}{0}} 181 | {\labelwidth 0.5em } 182 | {\labelwidth 1.2em } 183 | \leftmargin\labelwidth \addtolength{\leftmargin}{\labelsep} 184 | \ALC@tlm\labelsep 185 | } 186 | } 187 | {\end{list}} 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /Article-Journal/ICML12/example_paper.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{langley00, 2 | author = {P. Langley}, 3 | title = {Crafting Papers on Machine Learning}, 4 | year = {2000}, 5 | pages = {1207--1216}, 6 | editor = {Pat Langley}, 7 | booktitle = {Proceedings of the 17th International Conference 8 | on Machine Learning (ICML 2000)}, 9 | address = {Stanford, CA}, 10 | publisher = {Morgan Kaufmann} 11 | } 12 | 13 | @TechReport{mitchell80, 14 | author = "T. M. Mitchell", 15 | title = "The Need for Biases in Learning Generalizations", 16 | institution = "Computer Science Department, Rutgers University", 17 | year = "1980", 18 | address = "New Brunswick, MA", 19 | } 20 | 21 | @phdthesis{kearns89, 22 | author = {M. J. Kearns}, 23 | title = {Computational Complexity of Machine Learning}, 24 | school = {Department of Computer Science, Harvard University}, 25 | year = {1989} 26 | } 27 | 28 | @Book{MachineLearningI, 29 | editor = "R. S. Michalski and J. G. Carbonell and T. 30 | M. Mitchell", 31 | title = "Machine Learning: An Artificial Intelligence 32 | Approach, Vol. I", 33 | publisher = "Tioga", 34 | year = "1983", 35 | address = "Palo Alto, CA" 36 | } 37 | 38 | @Book{DudaHart2nd, 39 | author = "R. O. Duda and P. E. Hart and D. G. Stork", 40 | title = "Pattern Classification", 41 | publisher = "John Wiley and Sons", 42 | edition = "2nd", 43 | year = "2000" 44 | } 45 | 46 | @misc{anonymous, 47 | title= {Suppressed for Anonymity}, 48 | author= {Author, N. N.}, 49 | year= {2011}, 50 | } 51 | 52 | @InCollection{Newell81, 53 | author = "A. Newell and P. S. Rosenbloom", 54 | title = "Mechanisms of Skill Acquisition and the Law of 55 | Practice", 56 | booktitle = "Cognitive Skills and Their Acquisition", 57 | pages = "1--51", 58 | publisher = "Lawrence Erlbaum Associates, Inc.", 59 | year = "1981", 60 | editor = "J. R. Anderson", 61 | chapter = "1", 62 | address = "Hillsdale, NJ" 63 | } 64 | 65 | 66 | @Article{Samuel59, 67 | author = "A. L. Samuel", 68 | title = "Some Studies in Machine Learning Using the Game of 69 | Checkers", 70 | journal = "IBM Journal of Research and Development", 71 | year = "1959", 72 | volume = "3", 73 | number = "3", 74 | pages = "211--229" 75 | } -------------------------------------------------------------------------------- /Article-Journal/ICML12/example_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ICML12/example_paper.pdf -------------------------------------------------------------------------------- /Article-Journal/ICML12/fancyhdr.sty: -------------------------------------------------------------------------------- 1 | % fancyhdr.sty version 3.2 2 | % Fancy headers and footers for LaTeX. 3 | % Piet van Oostrum, 4 | % Dept of Computer and Information Sciences, University of Utrecht, 5 | % Padualaan 14, P.O. Box 80.089, 3508 TB Utrecht, The Netherlands 6 | % Telephone: +31 30 2532180. Email: piet@cs.uu.nl 7 | % ======================================================================== 8 | % LICENCE: 9 | % This file may be distributed under the terms of the LaTeX Project Public 10 | % License, as described in lppl.txt in the base LaTeX distribution. 11 | % Either version 1 or, at your option, any later version. 12 | % ======================================================================== 13 | % MODIFICATION HISTORY: 14 | % Sep 16, 1994 15 | % version 1.4: Correction for use with \reversemargin 16 | % Sep 29, 1994: 17 | % version 1.5: Added the \iftopfloat, \ifbotfloat and \iffloatpage commands 18 | % Oct 4, 1994: 19 | % version 1.6: Reset single spacing in headers/footers for use with 20 | % setspace.sty or doublespace.sty 21 | % Oct 4, 1994: 22 | % version 1.7: changed \let\@mkboth\markboth to 23 | % \def\@mkboth{\protect\markboth} to make it more robust 24 | % Dec 5, 1994: 25 | % version 1.8: corrections for amsbook/amsart: define \@chapapp and (more 26 | % importantly) use the \chapter/sectionmark definitions from ps@headings if 27 | % they exist (which should be true for all standard classes). 28 | % May 31, 1995: 29 | % version 1.9: The proposed \renewcommand{\headrulewidth}{\iffloatpage... 30 | % construction in the doc did not work properly with the fancyplain style. 31 | % June 1, 1995: 32 | % version 1.91: The definition of \@mkboth wasn't restored on subsequent 33 | % \pagestyle{fancy}'s. 34 | % June 1, 1995: 35 | % version 1.92: The sequence \pagestyle{fancyplain} \pagestyle{plain} 36 | % \pagestyle{fancy} would erroneously select the plain version. 37 | % June 1, 1995: 38 | % version 1.93: \fancypagestyle command added. 39 | % Dec 11, 1995: 40 | % version 1.94: suggested by Conrad Hughes 41 | % CJCH, Dec 11, 1995: added \footruleskip to allow control over footrule 42 | % position (old hardcoded value of .3\normalbaselineskip is far too high 43 | % when used with very small footer fonts). 44 | % Jan 31, 1996: 45 | % version 1.95: call \@normalsize in the reset code if that is defined, 46 | % otherwise \normalsize. 47 | % this is to solve a problem with ucthesis.cls, as this doesn't 48 | % define \@currsize. Unfortunately for latex209 calling \normalsize doesn't 49 | % work as this is optimized to do very little, so there \@normalsize should 50 | % be called. Hopefully this code works for all versions of LaTeX known to 51 | % mankind. 52 | % April 25, 1996: 53 | % version 1.96: initialize \headwidth to a magic (negative) value to catch 54 | % most common cases that people change it before calling \pagestyle{fancy}. 55 | % Note it can't be initialized when reading in this file, because 56 | % \textwidth could be changed afterwards. This is quite probable. 57 | % We also switch to \MakeUppercase rather than \uppercase and introduce a 58 | % \nouppercase command for use in headers. and footers. 59 | % May 3, 1996: 60 | % version 1.97: Two changes: 61 | % 1. Undo the change in version 1.8 (using the pagestyle{headings} defaults 62 | % for the chapter and section marks. The current version of amsbook and 63 | % amsart classes don't seem to need them anymore. Moreover the standard 64 | % latex classes don't use \markboth if twoside isn't selected, and this is 65 | % confusing as \leftmark doesn't work as expected. 66 | % 2. include a call to \ps@empty in ps@@fancy. This is to solve a problem 67 | % in the amsbook and amsart classes, that make global changes to \topskip, 68 | % which are reset in \ps@empty. Hopefully this doesn't break other things. 69 | % May 7, 1996: 70 | % version 1.98: 71 | % Added % after the line \def\nouppercase 72 | % May 7, 1996: 73 | % version 1.99: This is the alpha version of fancyhdr 2.0 74 | % Introduced the new commands \fancyhead, \fancyfoot, and \fancyhf. 75 | % Changed \headrulewidth, \footrulewidth, \footruleskip to 76 | % macros rather than length parameters, In this way they can be 77 | % conditionalized and they don't consume length registers. There is no need 78 | % to have them as length registers unless you want to do calculations with 79 | % them, which is unlikely. Note that this may make some uses of them 80 | % incompatible (i.e. if you have a file that uses \setlength or \xxxx=) 81 | % May 10, 1996: 82 | % version 1.99a: 83 | % Added a few more % signs 84 | % May 10, 1996: 85 | % version 1.99b: 86 | % Changed the syntax of \f@nfor to be resistent to catcode changes of := 87 | % Removed the [1] from the defs of \lhead etc. because the parameter is 88 | % consumed by the \@[xy]lhead etc. macros. 89 | % June 24, 1997: 90 | % version 1.99c: 91 | % corrected \nouppercase to also include the protected form of \MakeUppercase 92 | % \global added to manipulation of \headwidth. 93 | % \iffootnote command added. 94 | % Some comments added about \@fancyhead and \@fancyfoot. 95 | % Aug 24, 1998 96 | % version 1.99d 97 | % Changed the default \ps@empty to \ps@@empty in order to allow 98 | % \fancypagestyle{empty} redefinition. 99 | % Oct 11, 2000 100 | % version 2.0 101 | % Added LPPL license clause. 102 | % 103 | % A check for \headheight is added. An errormessage is given (once) if the 104 | % header is too large. Empty headers don't generate the error even if 105 | % \headheight is very small or even 0pt. 106 | % Warning added for the use of 'E' option when twoside option is not used. 107 | % In this case the 'E' fields will never be used. 108 | % 109 | % Mar 10, 2002 110 | % version 2.1beta 111 | % New command: \fancyhfoffset[place]{length} 112 | % defines offsets to be applied to the header/footer to let it stick into 113 | % the margins (if length > 0). 114 | % place is like in fancyhead, except that only E,O,L,R can be used. 115 | % This replaces the old calculation based on \headwidth and the marginpar 116 | % area. 117 | % \headwidth will be dynamically calculated in the headers/footers when 118 | % this is used. 119 | % 120 | % Mar 26, 2002 121 | % version 2.1beta2 122 | % \fancyhfoffset now also takes h,f as possible letters in the argument to 123 | % allow the header and footer widths to be different. 124 | % New commands \fancyheadoffset and \fancyfootoffset added comparable to 125 | % \fancyhead and \fancyfoot. 126 | % Errormessages and warnings have been made more informative. 127 | % 128 | % Dec 9, 2002 129 | % version 2.1 130 | % The defaults for \footrulewidth, \plainheadrulewidth and 131 | % \plainfootrulewidth are changed from \z@skip to 0pt. In this way when 132 | % someone inadvertantly uses \setlength to change any of these, the value 133 | % of \z@skip will not be changed, rather an errormessage will be given. 134 | 135 | % March 3, 2004 136 | % Release of version 3.0 137 | 138 | % Oct 7, 2004 139 | % version 3.1 140 | % Added '\endlinechar=13' to \fancy@reset to prevent problems with 141 | % includegraphics in header when verbatiminput is active. 142 | 143 | % March 22, 2005 144 | % version 3.2 145 | % reset \everypar (the real one) in \fancy@reset because spanish.ldf does 146 | % strange things with \everypar between << and >>. 147 | 148 | \def\ifancy@mpty#1{\def\temp@a{#1}\ifx\temp@a\@empty} 149 | 150 | \def\fancy@def#1#2{\ifancy@mpty{#2}\fancy@gbl\def#1{\leavevmode}\else 151 | \fancy@gbl\def#1{#2\strut}\fi} 152 | 153 | \let\fancy@gbl\global 154 | 155 | \def\@fancyerrmsg#1{% 156 | \ifx\PackageError\undefined 157 | \errmessage{#1}\else 158 | \PackageError{Fancyhdr}{#1}{}\fi} 159 | \def\@fancywarning#1{% 160 | \ifx\PackageWarning\undefined 161 | \errmessage{#1}\else 162 | \PackageWarning{Fancyhdr}{#1}{}\fi} 163 | 164 | % Usage: \@forc \var{charstring}{command to be executed for each char} 165 | % This is similar to LaTeX's \@tfor, but expands the charstring. 166 | 167 | \def\@forc#1#2#3{\expandafter\f@rc\expandafter#1\expandafter{#2}{#3}} 168 | \def\f@rc#1#2#3{\def\temp@ty{#2}\ifx\@empty\temp@ty\else 169 | \f@@rc#1#2\f@@rc{#3}\fi} 170 | \def\f@@rc#1#2#3\f@@rc#4{\def#1{#2}#4\f@rc#1{#3}{#4}} 171 | 172 | % Usage: \f@nfor\name:=list\do{body} 173 | % Like LaTeX's \@for but an empty list is treated as a list with an empty 174 | % element 175 | 176 | \newcommand{\f@nfor}[3]{\edef\@fortmp{#2}% 177 | \expandafter\@forloop#2,\@nil,\@nil\@@#1{#3}} 178 | 179 | % Usage: \def@ult \cs{defaults}{argument} 180 | % sets \cs to the characters from defaults appearing in argument 181 | % or defaults if it would be empty. All characters are lowercased. 182 | 183 | \newcommand\def@ult[3]{% 184 | \edef\temp@a{\lowercase{\edef\noexpand\temp@a{#3}}}\temp@a 185 | \def#1{}% 186 | \@forc\tmpf@ra{#2}% 187 | {\expandafter\if@in\tmpf@ra\temp@a{\edef#1{#1\tmpf@ra}}{}}% 188 | \ifx\@empty#1\def#1{#2}\fi} 189 | % 190 | % \if@in 191 | % 192 | \newcommand{\if@in}[4]{% 193 | \edef\temp@a{#2}\def\temp@b##1#1##2\temp@b{\def\temp@b{##1}}% 194 | \expandafter\temp@b#2#1\temp@b\ifx\temp@a\temp@b #4\else #3\fi} 195 | 196 | \newcommand{\fancyhead}{\@ifnextchar[{\f@ncyhf\fancyhead h}% 197 | {\f@ncyhf\fancyhead h[]}} 198 | \newcommand{\fancyfoot}{\@ifnextchar[{\f@ncyhf\fancyfoot f}% 199 | {\f@ncyhf\fancyfoot f[]}} 200 | \newcommand{\fancyhf}{\@ifnextchar[{\f@ncyhf\fancyhf{}}% 201 | {\f@ncyhf\fancyhf{}[]}} 202 | 203 | % New commands for offsets added 204 | 205 | \newcommand{\fancyheadoffset}{\@ifnextchar[{\f@ncyhfoffs\fancyheadoffset h}% 206 | {\f@ncyhfoffs\fancyheadoffset h[]}} 207 | \newcommand{\fancyfootoffset}{\@ifnextchar[{\f@ncyhfoffs\fancyfootoffset f}% 208 | {\f@ncyhfoffs\fancyfootoffset f[]}} 209 | \newcommand{\fancyhfoffset}{\@ifnextchar[{\f@ncyhfoffs\fancyhfoffset{}}% 210 | {\f@ncyhfoffs\fancyhfoffset{}[]}} 211 | 212 | % The header and footer fields are stored in command sequences with 213 | % names of the form: \f@ncy with for [eo], from [lcr] 214 | % and from [hf]. 215 | 216 | \def\f@ncyhf#1#2[#3]#4{% 217 | \def\temp@c{}% 218 | \@forc\tmpf@ra{#3}% 219 | {\expandafter\if@in\tmpf@ra{eolcrhf,EOLCRHF}% 220 | {}{\edef\temp@c{\temp@c\tmpf@ra}}}% 221 | \ifx\@empty\temp@c\else 222 | \@fancyerrmsg{Illegal char `\temp@c' in \string#1 argument: 223 | [#3]}% 224 | \fi 225 | \f@nfor\temp@c{#3}% 226 | {\def@ult\f@@@eo{eo}\temp@c 227 | \if@twoside\else 228 | \if\f@@@eo e\@fancywarning 229 | {\string#1's `E' option without twoside option is useless}\fi\fi 230 | \def@ult\f@@@lcr{lcr}\temp@c 231 | \def@ult\f@@@hf{hf}{#2\temp@c}% 232 | \@forc\f@@eo\f@@@eo 233 | {\@forc\f@@lcr\f@@@lcr 234 | {\@forc\f@@hf\f@@@hf 235 | {\expandafter\fancy@def\csname 236 | f@ncy\f@@eo\f@@lcr\f@@hf\endcsname 237 | {#4}}}}}} 238 | 239 | \def\f@ncyhfoffs#1#2[#3]#4{% 240 | \def\temp@c{}% 241 | \@forc\tmpf@ra{#3}% 242 | {\expandafter\if@in\tmpf@ra{eolrhf,EOLRHF}% 243 | {}{\edef\temp@c{\temp@c\tmpf@ra}}}% 244 | \ifx\@empty\temp@c\else 245 | \@fancyerrmsg{Illegal char `\temp@c' in \string#1 argument: 246 | [#3]}% 247 | \fi 248 | \f@nfor\temp@c{#3}% 249 | {\def@ult\f@@@eo{eo}\temp@c 250 | \if@twoside\else 251 | \if\f@@@eo e\@fancywarning 252 | {\string#1's `E' option without twoside option is useless}\fi\fi 253 | \def@ult\f@@@lcr{lr}\temp@c 254 | \def@ult\f@@@hf{hf}{#2\temp@c}% 255 | \@forc\f@@eo\f@@@eo 256 | {\@forc\f@@lcr\f@@@lcr 257 | {\@forc\f@@hf\f@@@hf 258 | {\expandafter\setlength\csname 259 | f@ncyO@\f@@eo\f@@lcr\f@@hf\endcsname 260 | {#4}}}}}% 261 | \fancy@setoffs} 262 | 263 | % Fancyheadings version 1 commands. These are more or less deprecated, 264 | % but they continue to work. 265 | 266 | \newcommand{\lhead}{\@ifnextchar[{\@xlhead}{\@ylhead}} 267 | \def\@xlhead[#1]#2{\fancy@def\f@ncyelh{#1}\fancy@def\f@ncyolh{#2}} 268 | \def\@ylhead#1{\fancy@def\f@ncyelh{#1}\fancy@def\f@ncyolh{#1}} 269 | 270 | \newcommand{\chead}{\@ifnextchar[{\@xchead}{\@ychead}} 271 | \def\@xchead[#1]#2{\fancy@def\f@ncyech{#1}\fancy@def\f@ncyoch{#2}} 272 | \def\@ychead#1{\fancy@def\f@ncyech{#1}\fancy@def\f@ncyoch{#1}} 273 | 274 | \newcommand{\rhead}{\@ifnextchar[{\@xrhead}{\@yrhead}} 275 | \def\@xrhead[#1]#2{\fancy@def\f@ncyerh{#1}\fancy@def\f@ncyorh{#2}} 276 | \def\@yrhead#1{\fancy@def\f@ncyerh{#1}\fancy@def\f@ncyorh{#1}} 277 | 278 | \newcommand{\lfoot}{\@ifnextchar[{\@xlfoot}{\@ylfoot}} 279 | \def\@xlfoot[#1]#2{\fancy@def\f@ncyelf{#1}\fancy@def\f@ncyolf{#2}} 280 | \def\@ylfoot#1{\fancy@def\f@ncyelf{#1}\fancy@def\f@ncyolf{#1}} 281 | 282 | \newcommand{\cfoot}{\@ifnextchar[{\@xcfoot}{\@ycfoot}} 283 | \def\@xcfoot[#1]#2{\fancy@def\f@ncyecf{#1}\fancy@def\f@ncyocf{#2}} 284 | \def\@ycfoot#1{\fancy@def\f@ncyecf{#1}\fancy@def\f@ncyocf{#1}} 285 | 286 | \newcommand{\rfoot}{\@ifnextchar[{\@xrfoot}{\@yrfoot}} 287 | \def\@xrfoot[#1]#2{\fancy@def\f@ncyerf{#1}\fancy@def\f@ncyorf{#2}} 288 | \def\@yrfoot#1{\fancy@def\f@ncyerf{#1}\fancy@def\f@ncyorf{#1}} 289 | 290 | \newlength{\fancy@headwidth} 291 | \let\headwidth\fancy@headwidth 292 | \newlength{\f@ncyO@elh} 293 | \newlength{\f@ncyO@erh} 294 | \newlength{\f@ncyO@olh} 295 | \newlength{\f@ncyO@orh} 296 | \newlength{\f@ncyO@elf} 297 | \newlength{\f@ncyO@erf} 298 | \newlength{\f@ncyO@olf} 299 | \newlength{\f@ncyO@orf} 300 | \newcommand{\headrulewidth}{0.4pt} 301 | \newcommand{\footrulewidth}{0pt} 302 | \newcommand{\footruleskip}{.3\normalbaselineskip} 303 | 304 | % Fancyplain stuff shouldn't be used anymore (rather 305 | % \fancypagestyle{plain} should be used), but it must be present for 306 | % compatibility reasons. 307 | 308 | \newcommand{\plainheadrulewidth}{0pt} 309 | \newcommand{\plainfootrulewidth}{0pt} 310 | \newif\if@fancyplain \@fancyplainfalse 311 | \def\fancyplain#1#2{\if@fancyplain#1\else#2\fi} 312 | 313 | \headwidth=-123456789sp %magic constant 314 | 315 | % Command to reset various things in the headers: 316 | % a.o. single spacing (taken from setspace.sty) 317 | % and the catcode of ^^M (so that epsf files in the header work if a 318 | % verbatim crosses a page boundary) 319 | % It also defines a \nouppercase command that disables \uppercase and 320 | % \Makeuppercase. It can only be used in the headers and footers. 321 | \let\fnch@everypar\everypar% save real \everypar because of spanish.ldf 322 | \def\fancy@reset{\fnch@everypar{}\restorecr\endlinechar=13 323 | \def\baselinestretch{1}% 324 | \def\nouppercase##1{{\let\uppercase\relax\let\MakeUppercase\relax 325 | \expandafter\let\csname MakeUppercase \endcsname\relax##1}}% 326 | \ifx\undefined\@newbaseline% NFSS not present; 2.09 or 2e 327 | \ifx\@normalsize\undefined \normalsize % for ucthesis.cls 328 | \else \@normalsize \fi 329 | \else% NFSS (2.09) present 330 | \@newbaseline% 331 | \fi} 332 | 333 | % Initialization of the head and foot text. 334 | 335 | % The default values still contain \fancyplain for compatibility. 336 | \fancyhf{} % clear all 337 | % lefthead empty on ``plain'' pages, \rightmark on even, \leftmark on odd pages 338 | % evenhead empty on ``plain'' pages, \leftmark on even, \rightmark on odd pages 339 | \if@twoside 340 | \fancyhead[el,or]{\fancyplain{}{\sl\rightmark}} 341 | \fancyhead[er,ol]{\fancyplain{}{\sl\leftmark}} 342 | \else 343 | \fancyhead[l]{\fancyplain{}{\sl\rightmark}} 344 | \fancyhead[r]{\fancyplain{}{\sl\leftmark}} 345 | \fi 346 | \fancyfoot[c]{\rm\thepage} % page number 347 | 348 | % Use box 0 as a temp box and dimen 0 as temp dimen. 349 | % This can be done, because this code will always 350 | % be used inside another box, and therefore the changes are local. 351 | 352 | \def\@fancyvbox#1#2{\setbox0\vbox{#2}\ifdim\ht0>#1\@fancywarning 353 | {\string#1 is too small (\the#1): ^^J Make it at least \the\ht0.^^J 354 | We now make it that large for the rest of the document.^^J 355 | This may cause the page layout to be inconsistent, however\@gobble}% 356 | \dimen0=#1\global\setlength{#1}{\ht0}\ht0=\dimen0\fi 357 | \box0} 358 | 359 | % Put together a header or footer given the left, center and 360 | % right text, fillers at left and right and a rule. 361 | % The \lap commands put the text into an hbox of zero size, 362 | % so overlapping text does not generate an errormessage. 363 | % These macros have 5 parameters: 364 | % 1. LEFTSIDE BEARING % This determines at which side the header will stick 365 | % out. When \fancyhfoffset is used this calculates \headwidth, otherwise 366 | % it is \hss or \relax (after expansion). 367 | % 2. \f@ncyolh, \f@ncyelh, \f@ncyolf or \f@ncyelf. This is the left component. 368 | % 3. \f@ncyoch, \f@ncyech, \f@ncyocf or \f@ncyecf. This is the middle comp. 369 | % 4. \f@ncyorh, \f@ncyerh, \f@ncyorf or \f@ncyerf. This is the right component. 370 | % 5. RIGHTSIDE BEARING. This is always \relax or \hss (after expansion). 371 | 372 | \def\@fancyhead#1#2#3#4#5{#1\hbox to\headwidth{\fancy@reset 373 | \@fancyvbox\headheight{\hbox 374 | {\rlap{\parbox[b]{\headwidth}{\raggedright#2}}\hfill 375 | \parbox[b]{\headwidth}{\centering#3}\hfill 376 | \llap{\parbox[b]{\headwidth}{\raggedleft#4}}}\headrule}}#5} 377 | 378 | \def\@fancyfoot#1#2#3#4#5{#1\hbox to\headwidth{\fancy@reset 379 | \@fancyvbox\footskip{\footrule 380 | \hbox{\rlap{\parbox[t]{\headwidth}{\raggedright#2}}\hfill 381 | \parbox[t]{\headwidth}{\centering#3}\hfill 382 | \llap{\parbox[t]{\headwidth}{\raggedleft#4}}}}}#5} 383 | 384 | \def\headrule{{\if@fancyplain\let\headrulewidth\plainheadrulewidth\fi 385 | \hrule\@height\headrulewidth\@width\headwidth \vskip-\headrulewidth}} 386 | 387 | \def\footrule{{\if@fancyplain\let\footrulewidth\plainfootrulewidth\fi 388 | \vskip-\footruleskip\vskip-\footrulewidth 389 | \hrule\@width\headwidth\@height\footrulewidth\vskip\footruleskip}} 390 | 391 | \def\ps@fancy{% 392 | \@ifundefined{@chapapp}{\let\@chapapp\chaptername}{}%for amsbook 393 | % 394 | % Define \MakeUppercase for old LaTeXen. 395 | % Note: we used \def rather than \let, so that \let\uppercase\relax (from 396 | % the version 1 documentation) will still work. 397 | % 398 | \@ifundefined{MakeUppercase}{\def\MakeUppercase{\uppercase}}{}% 399 | \@ifundefined{chapter}{\def\sectionmark##1{\markboth 400 | {\MakeUppercase{\ifnum \c@secnumdepth>\z@ 401 | \thesection\hskip 1em\relax \fi ##1}}{}}% 402 | \def\subsectionmark##1{\markright {\ifnum \c@secnumdepth >\@ne 403 | \thesubsection\hskip 1em\relax \fi ##1}}}% 404 | {\def\chaptermark##1{\markboth {\MakeUppercase{\ifnum \c@secnumdepth>\m@ne 405 | \@chapapp\ \thechapter. \ \fi ##1}}{}}% 406 | \def\sectionmark##1{\markright{\MakeUppercase{\ifnum \c@secnumdepth >\z@ 407 | \thesection. \ \fi ##1}}}}% 408 | %\csname ps@headings\endcsname % use \ps@headings defaults if they exist 409 | \ps@@fancy 410 | \gdef\ps@fancy{\@fancyplainfalse\ps@@fancy}% 411 | % Initialize \headwidth if the user didn't 412 | % 413 | \ifdim\headwidth<0sp 414 | % 415 | % This catches the case that \headwidth hasn't been initialized and the 416 | % case that the user added something to \headwidth in the expectation that 417 | % it was initialized to \textwidth. We compensate this now. This loses if 418 | % the user intended to multiply it by a factor. But that case is more 419 | % likely done by saying something like \headwidth=1.2\textwidth. 420 | % The doc says you have to change \headwidth after the first call to 421 | % \pagestyle{fancy}. This code is just to catch the most common cases were 422 | % that requirement is violated. 423 | % 424 | \global\advance\headwidth123456789sp\global\advance\headwidth\textwidth 425 | \fi} 426 | \def\ps@fancyplain{\ps@fancy \let\ps@plain\ps@plain@fancy} 427 | \def\ps@plain@fancy{\@fancyplaintrue\ps@@fancy} 428 | \let\ps@@empty\ps@empty 429 | \def\ps@@fancy{% 430 | \ps@@empty % This is for amsbook/amsart, which do strange things with \topskip 431 | \def\@mkboth{\protect\markboth}% 432 | \def\@oddhead{\@fancyhead\fancy@Oolh\f@ncyolh\f@ncyoch\f@ncyorh\fancy@Oorh}% 433 | \def\@oddfoot{\@fancyfoot\fancy@Oolf\f@ncyolf\f@ncyocf\f@ncyorf\fancy@Oorf}% 434 | \def\@evenhead{\@fancyhead\fancy@Oelh\f@ncyelh\f@ncyech\f@ncyerh\fancy@Oerh}% 435 | \def\@evenfoot{\@fancyfoot\fancy@Oelf\f@ncyelf\f@ncyecf\f@ncyerf\fancy@Oerf}% 436 | } 437 | % Default definitions for compatibility mode: 438 | % These cause the header/footer to take the defined \headwidth as width 439 | % And to shift in the direction of the marginpar area 440 | 441 | \def\fancy@Oolh{\if@reversemargin\hss\else\relax\fi} 442 | \def\fancy@Oorh{\if@reversemargin\relax\else\hss\fi} 443 | \let\fancy@Oelh\fancy@Oorh 444 | \let\fancy@Oerh\fancy@Oolh 445 | 446 | \let\fancy@Oolf\fancy@Oolh 447 | \let\fancy@Oorf\fancy@Oorh 448 | \let\fancy@Oelf\fancy@Oelh 449 | \let\fancy@Oerf\fancy@Oerh 450 | 451 | % New definitions for the use of \fancyhfoffset 452 | % These calculate the \headwidth from \textwidth and the specified offsets. 453 | 454 | \def\fancy@offsolh{\headwidth=\textwidth\advance\headwidth\f@ncyO@olh 455 | \advance\headwidth\f@ncyO@orh\hskip-\f@ncyO@olh} 456 | \def\fancy@offselh{\headwidth=\textwidth\advance\headwidth\f@ncyO@elh 457 | \advance\headwidth\f@ncyO@erh\hskip-\f@ncyO@elh} 458 | 459 | \def\fancy@offsolf{\headwidth=\textwidth\advance\headwidth\f@ncyO@olf 460 | \advance\headwidth\f@ncyO@orf\hskip-\f@ncyO@olf} 461 | \def\fancy@offself{\headwidth=\textwidth\advance\headwidth\f@ncyO@elf 462 | \advance\headwidth\f@ncyO@erf\hskip-\f@ncyO@elf} 463 | 464 | \def\fancy@setoffs{% 465 | % Just in case \let\headwidth\textwidth was used 466 | \fancy@gbl\let\headwidth\fancy@headwidth 467 | \fancy@gbl\let\fancy@Oolh\fancy@offsolh 468 | \fancy@gbl\let\fancy@Oelh\fancy@offselh 469 | \fancy@gbl\let\fancy@Oorh\hss 470 | \fancy@gbl\let\fancy@Oerh\hss 471 | \fancy@gbl\let\fancy@Oolf\fancy@offsolf 472 | \fancy@gbl\let\fancy@Oelf\fancy@offself 473 | \fancy@gbl\let\fancy@Oorf\hss 474 | \fancy@gbl\let\fancy@Oerf\hss} 475 | 476 | \newif\iffootnote 477 | \let\latex@makecol\@makecol 478 | \def\@makecol{\ifvoid\footins\footnotetrue\else\footnotefalse\fi 479 | \let\topfloat\@toplist\let\botfloat\@botlist\latex@makecol} 480 | \def\iftopfloat#1#2{\ifx\topfloat\empty #2\else #1\fi} 481 | \def\ifbotfloat#1#2{\ifx\botfloat\empty #2\else #1\fi} 482 | \def\iffloatpage#1#2{\if@fcolmade #1\else #2\fi} 483 | 484 | \newcommand{\fancypagestyle}[2]{% 485 | \@namedef{ps@#1}{\let\fancy@gbl\relax#2\relax\ps@fancy}} 486 | -------------------------------------------------------------------------------- /Article-Journal/ICML12/icml2012.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ICML12/icml2012.bst -------------------------------------------------------------------------------- /Article-Journal/ICML12/icml2012.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ICML12/icml2012.doc -------------------------------------------------------------------------------- /Article-Journal/ICML12/icml2012.sty: -------------------------------------------------------------------------------- 1 | % File: icml2012.sty (LaTeX style file for ICML-2012) 2 | 3 | % This file contains the LaTeX formatting parameters for a two-column 4 | % conference proceedings that is 8.5 inches wide by 11 inches high. 5 | 6 | % Modified by Francesco Figari, 2012: changed years, location 7 | % 8 | % Modified by Christoph Sawade and Tobias Scheffer, 2011: added line 9 | % numbers, changed years 10 | % 11 | % Modified by Hal Daume III, 2010: changed years, added hyperlinks 12 | % 13 | % Modified by Kiri Wagstaff, 2009: changed years 14 | % 15 | % Modified by Sam Roweis, 2008: changed years 16 | % 17 | % Modified by Ricardo Silva, 2007: update of the ifpdf verification 18 | % 19 | % Modified by Prasad Tadepalli and Andrew Moore, merely changing years. 20 | % 21 | % Modified by Kristian Kersting, 2005, based on Jennifer Dy's 2004 version 22 | % - running title. If the original title is to long or is breaking a line, 23 | % use \icmltitlerunning{...} in the preamble to supply a shorter form. 24 | % Added fancyhdr package to get a running head. 25 | % - Updated to store the page size because pdflatex does compile the 26 | % page size into the pdf. 27 | % 28 | % Hacked by Terran Lane, 2003: 29 | % - Updated to use LaTeX2e style file conventions (ProvidesPackage, 30 | % etc.) 31 | % - Added an ``appearing in'' block at the base of the first column 32 | % (thus keeping the ``appearing in'' note out of the bottom margin 33 | % where the printer should strip in the page numbers). 34 | % - Added a package option [accepted] that selects between the ``Under 35 | % review'' notice (default, when no option is specified) and the 36 | % ``Appearing in'' notice (for use when the paper has been accepted 37 | % and will appear). 38 | % 39 | % Originally created as: ml2k.sty (LaTeX style file for ICML-2000) 40 | % by P. Langley (12/23/99) 41 | 42 | %%%%%%%%%%%%%%%%%%%% 43 | %% This version of the style file supports both a ``review'' version 44 | %% and a ``final/accepted'' version. The difference is only in the 45 | %% text that appears in the note at the bottom of the first column of 46 | %% the first page. The default behavior is to print a note to the 47 | %% effect that the paper is under review and don't distribute it. The 48 | %% final/accepted version prints an ``Appearing in'' note. To get the 49 | %% latter behavior, in the calling file change the ``usepackage'' line 50 | %% from: 51 | %% \usepackage{icml2012} 52 | %% to 53 | %% \usepackage[accepted]{icml2012} 54 | %%%%%%%%%%%%%%%%%%%% 55 | 56 | \NeedsTeXFormat{LaTeX2e} 57 | \ProvidesPackage{icml2012}[2012/01/01 v2.0 ICML Conference Style File] 58 | 59 | % Use fancyhdr package 60 | \RequirePackage{fancyhdr} 61 | \RequirePackage{color} 62 | \RequirePackage{algorithm} 63 | \RequirePackage{algorithmic} 64 | \RequirePackage{natbib} 65 | \RequirePackage{eso-pic} % used by \AddToShipoutPicture 66 | 67 | %%%%%%%% Options 68 | \DeclareOption{accepted}{% 69 | \renewcommand{\Notice@String}{\ICML@appearing} 70 | \gdef\isaccepted{1} 71 | } 72 | \DeclareOption{nohyperref}{% 73 | \gdef\nohyperref{1} 74 | } 75 | 76 | \ifdefined\nohyperref\else\ifdefined\hypersetup 77 | \definecolor{mydarkblue}{rgb}{0,0.08,0.45} 78 | \hypersetup{ % 79 | pdftitle={}, 80 | pdfauthor={}, 81 | pdfsubject={Proceedings of the International Conference on Machine Learning 2010}, 82 | pdfkeywords={}, 83 | pdfborder=0 0 0, 84 | pdfpagemode=UseNone, 85 | colorlinks=true, 86 | linkcolor=mydarkblue, 87 | citecolor=mydarkblue, 88 | filecolor=mydarkblue, 89 | urlcolor=mydarkblue, 90 | pdfview=FitH} 91 | 92 | \ifdefined\isaccepted \else 93 | \hypersetup{pdfauthor={Anonymous Submission}} 94 | \fi 95 | \fi\fi 96 | 97 | %%%%%%%%%%%%%%%%%%%% 98 | % This string is printed at the bottom of the page for the 99 | % final/accepted version of the ``appearing in'' note. Modify it to 100 | % change that text. 101 | %%%%%%%%%%%%%%%%%%%% 102 | \newcommand{\ICML@appearing}{Appearing in \textit{Proceedings of the 103 | $\mathit{29}^{th}$ International Conference on Machine Learning}, 104 | Edinburgh, Scotland, UK, 2012. Copyright 2012 by the author(s)/owner(s).} 105 | 106 | %%%%%%%%%%%%%%%%%%%% 107 | % This string is printed at the bottom of the page for the draft/under 108 | % review version of the ``appearing in'' note. Modify it to change 109 | % that text. 110 | %%%%%%%%%%%%%%%%%%%% 111 | \newcommand{\Notice@String}{Preliminary work. Under review by the 112 | International Conference on Machine Learning (ICML). Do not distribute.} 113 | 114 | % Cause the declared options to actually be parsed and activated 115 | \ProcessOptions\relax 116 | 117 | % Uncomment the following for debugging. It will cause LaTeX to dump 118 | % the version of the ``appearing in'' string that will actually appear 119 | % in the document. 120 | %\typeout{>> Notice string='\Notice@String'} 121 | 122 | % Change citation commands to be more like old ICML styles 123 | \newcommand{\yrcite}[1]{\citeyearpar{#1}} 124 | \renewcommand{\cite}[1]{\citep{#1}} 125 | 126 | 127 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 128 | % to ensure the letter format is used. pdflatex does compile the 129 | % page size into the pdf. This is done using \pdfpagewidth and 130 | % \pdfpageheight. As Latex does not know this directives, we first 131 | % check whether pdflatex or latex is used. 132 | % 133 | % Kristian Kersting 2005 134 | % 135 | % in order to account for the more recent use of pdfetex as the default 136 | % compiler, I have changed the pdf verification. 137 | % 138 | % Ricardo Silva 2007 139 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 140 | 141 | \paperwidth=8.5in 142 | \paperheight=11in 143 | 144 | % old PDFLaTex verification, circa 2005 145 | % 146 | %\newif\ifpdf\ifx\pdfoutput\undefined 147 | % \pdffalse % we are not running PDFLaTeX 148 | %\else 149 | % \pdfoutput=1 % we are running PDFLaTeX 150 | % \pdftrue 151 | %\fi 152 | 153 | \newif\ifpdf %adapted from ifpdf.sty 154 | \ifx\pdfoutput\undefined 155 | \else 156 | \ifx\pdfoutput\relax 157 | \else 158 | \ifcase\pdfoutput 159 | \else 160 | \pdftrue 161 | \fi 162 | \fi 163 | \fi 164 | 165 | \ifpdf 166 | % \pdfpagewidth=\paperwidth 167 | % \pdfpageheight=\paperheight 168 | \setlength{\pdfpagewidth}{8.5in} 169 | \setlength{\pdfpageheight}{11in} 170 | \fi 171 | 172 | % Physical page layout 173 | 174 | \evensidemargin -0.23in 175 | \oddsidemargin -0.23in 176 | \setlength\textheight{9.0in} 177 | \setlength\textwidth{6.75in} 178 | \setlength\columnsep{0.25in} 179 | \setlength\headheight{10pt} 180 | \setlength\headsep{10pt} 181 | \addtolength{\topmargin}{-20pt} 182 | 183 | %\setlength\headheight{1em} 184 | %\setlength\headsep{1em} 185 | \addtolength{\topmargin}{-0.29in} 186 | 187 | %\addtolength{\topmargin}{-2em} 188 | 189 | %% The following is adapted from code in the acmconf.sty conference 190 | %% style file. The constants in it are somewhat magical, and appear 191 | %% to work well with the two-column format on US letter paper that 192 | %% ICML uses, but will break if you change that layout, or if you use 193 | %% a longer block of text for the copyright notice string. Fiddle with 194 | %% them if necessary to get the block to fit/look right. 195 | %% 196 | %% -- Terran Lane, 2003 197 | %% 198 | %% The following comments are included verbatim from acmconf.sty: 199 | %% 200 | %%% This section (written by KBT) handles the 1" box in the lower left 201 | %%% corner of the left column of the first page by creating a picture, 202 | %%% and inserting the predefined string at the bottom (with a negative 203 | %%% displacement to offset the space allocated for a non-existent 204 | %%% caption). 205 | %%% 206 | \def\ftype@copyrightbox{8} 207 | \def\@copyrightspace{ 208 | % Create a float object positioned at the bottom of the column. Note 209 | % that because of the mystical nature of floats, this has to be called 210 | % before the first column is populated with text (e.g., from the title 211 | % or abstract blocks). Otherwise, the text will force the float to 212 | % the next column. -- TDRL. 213 | \@float{copyrightbox}[b] 214 | \begin{center} 215 | \setlength{\unitlength}{1pc} 216 | \begin{picture}(20,1.5) 217 | % Create a line separating the main text from the note block. 218 | % 4.818pc==0.8in. 219 | \put(0,2.5){\line(1,0){4.818}} 220 | % Insert the text string itself. Note that the string has to be 221 | % enclosed in a parbox -- the \put call needs a box object to 222 | % position. Without the parbox, the text gets splattered across the 223 | % bottom of the page semi-randomly. The 19.75pc distance seems to be 224 | % the width of the column, though I can't find an appropriate distance 225 | % variable to substitute here. -- TDRL. 226 | \put(0,0){\parbox[b]{19.75pc}{\small \Notice@String}} 227 | \end{picture} 228 | \end{center} 229 | \end@float} 230 | 231 | % Note: A few Latex versions need the next line instead of the former. 232 | % \addtolength{\topmargin}{0.3in} 233 | % \setlength\footheight{0pt} 234 | \setlength\footskip{0pt} 235 | %\pagestyle{empty} 236 | \flushbottom \twocolumn 237 | \sloppy 238 | 239 | % Clear out the addcontentsline command 240 | \def\addcontentsline#1#2#3{} 241 | 242 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 243 | %%% commands for formatting paper title, author names, and addresses. 244 | 245 | %%start%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 246 | %%%%%% title as running head -- Kristian Kersting 2005 %%%%%%%%%%%%% 247 | 248 | 249 | %\makeatletter 250 | %\newtoks\mytoksa 251 | %\newtoks\mytoksb 252 | %\newcommand\addtomylist[2]{% 253 | % \mytoksa\expandafter{#1}% 254 | % \mytoksb{#2}% 255 | % \edef#1{\the\mytoksa\the\mytoksb}% 256 | %} 257 | %\makeatother 258 | 259 | % box to check the size of the running head 260 | \newbox\titrun 261 | 262 | % general page style 263 | \pagestyle{fancy} 264 | \fancyhf{} 265 | \fancyhead{} 266 | \fancyfoot{} 267 | % set the width of the head rule to 1 point 268 | \renewcommand{\headrulewidth}{1pt} 269 | 270 | % definition to set the head as running head in the preamble 271 | \def\icmltitlerunning#1{\gdef\@icmltitlerunning{#1}} 272 | 273 | % main definition adapting \icmltitle from 2004 274 | \long\def\icmltitle#1{% 275 | 276 | %check whether @icmltitlerunning exists 277 | % if not \icmltitle is used as running head 278 | \ifx\undefined\@icmltitlerunning% 279 | \gdef\@icmltitlerunning{#1} 280 | \fi 281 | 282 | %add it to pdf information 283 | \ifdefined\nohyperref\else\ifdefined\hypersetup 284 | \hypersetup{pdftitle={#1}} 285 | \fi\fi 286 | 287 | %get the dimension of the running title 288 | \global\setbox\titrun=\vbox{\small\bf\@icmltitlerunning} 289 | 290 | % error flag 291 | \gdef\@runningtitleerror{0} 292 | 293 | % running title too long 294 | \ifdim\wd\titrun>\textwidth% 295 | {\gdef\@runningtitleerror{1}}% 296 | % running title breaks a line 297 | \else\ifdim\ht\titrun>6.25pt 298 | {\gdef\@runningtitleerror{2}}% 299 | \fi 300 | \fi 301 | 302 | % if there is somthing wrong with the running title 303 | \ifnum\@runningtitleerror>0 304 | \typeout{}% 305 | \typeout{}% 306 | \typeout{*******************************************************}% 307 | \typeout{Title exceeds size limitations for running head.}% 308 | \typeout{Please supply a shorter form for the running head} 309 | \typeout{with \string\icmltitlerunning{...}\space prior to \string\begin{document}}% 310 | \typeout{*******************************************************}% 311 | \typeout{}% 312 | \typeout{}% 313 | % set default running title 314 | \chead{\small\bf Title Suppressed Due to Excessive Size}% 315 | \else 316 | % 'everything' fine, set provided running title 317 | \chead{\small\bf\@icmltitlerunning}% 318 | \fi 319 | 320 | % no running title on the first page of the paper 321 | \thispagestyle{empty} 322 | 323 | %%%%%%%%%%%%%%%%%%%% Kristian Kersting %%%%%%%%%%%%%%%%%%%%%%%%% 324 | %end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 325 | 326 | {\center\baselineskip 18pt 327 | \toptitlebar{\Large\bf #1}\bottomtitlebar} 328 | } 329 | 330 | 331 | \gdef\icmlfullauthorlist{} 332 | \newcommand\addstringtofullauthorlist{\g@addto@macro\icmlfullauthorlist} 333 | \newcommand\addtofullauthorlist[1]{% 334 | \ifdefined\icmlanyauthors 335 | \addstringtofullauthorlist{, #1} 336 | \else 337 | \addstringtofullauthorlist{#1} 338 | \gdef\icmlanyauthors{1} 339 | \fi 340 | \ifdefined\nohyperref\else\ifdefined\hypersetup 341 | \hypersetup{pdfauthor=\icmlfullauthorlist} 342 | \fi\fi} 343 | 344 | 345 | \def\toptitlebar{\hrule height1pt \vskip .25in} 346 | \def\bottomtitlebar{\vskip .22in \hrule height1pt \vskip .3in} 347 | \def\icmlauthor#1#2{% 348 | \ifdefined\isaccepted 349 | \par {\bf #1} \hfill {\sc #2}% 350 | \addtofullauthorlist{#1} 351 | \fi 352 | } 353 | \long\def\icmladdress#1{% 354 | \ifdefined\isaccepted 355 | \par\vskip 0.03in #1 \vskip 0.10in 356 | \fi 357 | } 358 | 359 | %% keywords as first class citizens 360 | \def\icmlkeywords#1{% 361 | % \ifdefined\isaccepted \else 362 | % \par {\bf Keywords:} #1% 363 | % \fi 364 | % \ifdefined\nohyperref\else\ifdefined\hypersetup 365 | % \hypersetup{pdfkeywords={#1}} 366 | % \fi\fi 367 | % \ifdefined\isaccepted \else 368 | % \par {\bf Keywords:} #1% 369 | % \fi 370 | \ifdefined\nohyperref\else\ifdefined\hypersetup 371 | \hypersetup{pdfkeywords={#1}} 372 | \fi\fi 373 | } 374 | 375 | % modification to natbib citations 376 | \setcitestyle{authoryear,round,citesep={;},aysep={,},yysep={;}} 377 | 378 | % Redefinition of the abstract environment. 379 | \renewenvironment{abstract} 380 | {% 381 | % Insert the ``appearing in'' copyright notice. 382 | \@copyrightspace 383 | \centerline{\large\bf Abstract} 384 | \vspace{-0.12in}\begin{quote}} 385 | {\par\end{quote}\vskip 0.12in} 386 | 387 | % numbered section headings with different treatment of numbers 388 | 389 | \def\@startsection#1#2#3#4#5#6{\if@noskipsec \leavevmode \fi 390 | \par \@tempskipa #4\relax 391 | \@afterindenttrue 392 | % Altered the following line to indent a section's first paragraph. 393 | % \ifdim \@tempskipa <\z@ \@tempskipa -\@tempskipa \@afterindentfalse\fi 394 | \ifdim \@tempskipa <\z@ \@tempskipa -\@tempskipa \fi 395 | \if@nobreak \everypar{}\else 396 | \addpenalty{\@secpenalty}\addvspace{\@tempskipa}\fi \@ifstar 397 | {\@ssect{#3}{#4}{#5}{#6}}{\@dblarg{\@sict{#1}{#2}{#3}{#4}{#5}{#6}}}} 398 | 399 | \def\@sict#1#2#3#4#5#6[#7]#8{\ifnum #2>\c@secnumdepth 400 | \def\@svsec{}\else 401 | \refstepcounter{#1}\edef\@svsec{\csname the#1\endcsname}\fi 402 | \@tempskipa #5\relax 403 | \ifdim \@tempskipa>\z@ 404 | \begingroup #6\relax 405 | \@hangfrom{\hskip #3\relax\@svsec.~}{\interlinepenalty \@M #8\par} 406 | \endgroup 407 | \csname #1mark\endcsname{#7}\addcontentsline 408 | {toc}{#1}{\ifnum #2>\c@secnumdepth \else 409 | \protect\numberline{\csname the#1\endcsname}\fi 410 | #7}\else 411 | \def\@svsechd{#6\hskip #3\@svsec #8\csname #1mark\endcsname 412 | {#7}\addcontentsline 413 | {toc}{#1}{\ifnum #2>\c@secnumdepth \else 414 | \protect\numberline{\csname the#1\endcsname}\fi 415 | #7}}\fi 416 | \@xsect{#5}} 417 | 418 | \def\@sect#1#2#3#4#5#6[#7]#8{\ifnum #2>\c@secnumdepth 419 | \def\@svsec{}\else 420 | \refstepcounter{#1}\edef\@svsec{\csname the#1\endcsname\hskip 0.4em }\fi 421 | \@tempskipa #5\relax 422 | \ifdim \@tempskipa>\z@ 423 | \begingroup #6\relax 424 | \@hangfrom{\hskip #3\relax\@svsec}{\interlinepenalty \@M #8\par} 425 | \endgroup 426 | \csname #1mark\endcsname{#7}\addcontentsline 427 | {toc}{#1}{\ifnum #2>\c@secnumdepth \else 428 | \protect\numberline{\csname the#1\endcsname}\fi 429 | #7}\else 430 | \def\@svsechd{#6\hskip #3\@svsec #8\csname #1mark\endcsname 431 | {#7}\addcontentsline 432 | {toc}{#1}{\ifnum #2>\c@secnumdepth \else 433 | \protect\numberline{\csname the#1\endcsname}\fi 434 | #7}}\fi 435 | \@xsect{#5}} 436 | 437 | % section headings with less space above and below them 438 | \def\thesection {\arabic{section}} 439 | \def\thesubsection {\thesection.\arabic{subsection}} 440 | \def\section{\@startsection{section}{1}{\z@}{-0.12in}{0.02in} 441 | {\large\bf\raggedright}} 442 | \def\subsection{\@startsection{subsection}{2}{\z@}{-0.10in}{0.01in} 443 | {\normalsize\bf\raggedright}} 444 | \def\subsubsection{\@startsection{subsubsection}{3}{\z@}{-0.08in}{0.01in} 445 | {\normalsize\sc\raggedright}} 446 | \def\paragraph{\@startsection{paragraph}{4}{\z@}{1.5ex plus 447 | 0.5ex minus .2ex}{-1em}{\normalsize\bf}} 448 | \def\subparagraph{\@startsection{subparagraph}{5}{\z@}{1.5ex plus 449 | 0.5ex minus .2ex}{-1em}{\normalsize\bf}} 450 | 451 | % Footnotes 452 | \footnotesep 6.65pt % 453 | \skip\footins 9pt 454 | \def\footnoterule{\kern-3pt \hrule width 0.8in \kern 2.6pt } 455 | \setcounter{footnote}{0} 456 | 457 | % Lists and paragraphs 458 | \parindent 0pt 459 | \topsep 4pt plus 1pt minus 2pt 460 | \partopsep 1pt plus 0.5pt minus 0.5pt 461 | \itemsep 2pt plus 1pt minus 0.5pt 462 | \parsep 2pt plus 1pt minus 0.5pt 463 | \parskip 6pt 464 | 465 | \leftmargin 2em \leftmargini\leftmargin \leftmarginii 2em 466 | \leftmarginiii 1.5em \leftmarginiv 1.0em \leftmarginv .5em 467 | \leftmarginvi .5em 468 | \labelwidth\leftmargini\advance\labelwidth-\labelsep \labelsep 5pt 469 | 470 | \def\@listi{\leftmargin\leftmargini} 471 | \def\@listii{\leftmargin\leftmarginii 472 | \labelwidth\leftmarginii\advance\labelwidth-\labelsep 473 | \topsep 2pt plus 1pt minus 0.5pt 474 | \parsep 1pt plus 0.5pt minus 0.5pt 475 | \itemsep \parsep} 476 | \def\@listiii{\leftmargin\leftmarginiii 477 | \labelwidth\leftmarginiii\advance\labelwidth-\labelsep 478 | \topsep 1pt plus 0.5pt minus 0.5pt 479 | \parsep \z@ \partopsep 0.5pt plus 0pt minus 0.5pt 480 | \itemsep \topsep} 481 | \def\@listiv{\leftmargin\leftmarginiv 482 | \labelwidth\leftmarginiv\advance\labelwidth-\labelsep} 483 | \def\@listv{\leftmargin\leftmarginv 484 | \labelwidth\leftmarginv\advance\labelwidth-\labelsep} 485 | \def\@listvi{\leftmargin\leftmarginvi 486 | \labelwidth\leftmarginvi\advance\labelwidth-\labelsep} 487 | 488 | \abovedisplayskip 7pt plus2pt minus5pt% 489 | \belowdisplayskip \abovedisplayskip 490 | \abovedisplayshortskip 0pt plus3pt% 491 | \belowdisplayshortskip 4pt plus3pt minus3pt% 492 | 493 | % Less leading in most fonts (due to the narrow columns) 494 | % The choices were between 1-pt and 1.5-pt leading 495 | \def\@normalsize{\@setsize\normalsize{11pt}\xpt\@xpt} 496 | \def\small{\@setsize\small{10pt}\ixpt\@ixpt} 497 | \def\footnotesize{\@setsize\footnotesize{10pt}\ixpt\@ixpt} 498 | \def\scriptsize{\@setsize\scriptsize{8pt}\viipt\@viipt} 499 | \def\tiny{\@setsize\tiny{7pt}\vipt\@vipt} 500 | \def\large{\@setsize\large{14pt}\xiipt\@xiipt} 501 | \def\Large{\@setsize\Large{16pt}\xivpt\@xivpt} 502 | \def\LARGE{\@setsize\LARGE{20pt}\xviipt\@xviipt} 503 | \def\huge{\@setsize\huge{23pt}\xxpt\@xxpt} 504 | \def\Huge{\@setsize\Huge{28pt}\xxvpt\@xxvpt} 505 | 506 | % Revised formatting for figure captions and table titles. 507 | \newsavebox\captionbox\newdimen\captionboxwid 508 | 509 | \long\def\@makecaption#1#2{ 510 | \vskip 10pt 511 | \baselineskip 11pt 512 | \setbox\@tempboxa\hbox{#1. #2} 513 | \ifdim \wd\@tempboxa >\hsize 514 | \sbox{\captionbox}{\small\sl #1.~} 515 | \captionboxwid=\wd\captionbox 516 | \usebox\captionbox {\footnotesize #2} 517 | % \usebox\captionbox {\small #2} 518 | \else 519 | \centerline{{\small\sl #1.} {\small #2}} 520 | \fi} 521 | 522 | \def\fnum@figure{Figure \thefigure} 523 | \def\fnum@table{Table \thetable} 524 | 525 | % Strut macros for skipping spaces above and below text in tables. 526 | \def\abovestrut#1{\rule[0in]{0in}{#1}\ignorespaces} 527 | \def\belowstrut#1{\rule[-#1]{0in}{#1}\ignorespaces} 528 | 529 | \def\abovespace{\abovestrut{0.20in}} 530 | \def\aroundspace{\abovestrut{0.20in}\belowstrut{0.10in}} 531 | \def\belowspace{\belowstrut{0.10in}} 532 | 533 | % Various personal itemization commands. 534 | \def\texitem#1{\par\noindent\hangindent 12pt 535 | \hbox to 12pt {\hss #1 ~}\ignorespaces} 536 | \def\icmlitem{\texitem{$\bullet$}} 537 | 538 | % To comment out multiple lines of text. 539 | \long\def\comment#1{} 540 | 541 | 542 | 543 | 544 | %% Line counter (not in final version). Adapted from NIPS style file by Christoph Sawade 545 | 546 | % Vertical Ruler 547 | % This code is, largely, from the CVPR 2010 conference style file 548 | % ----- define vruler 549 | \makeatletter 550 | \newbox\icmlrulerbox 551 | \newcount\icmlrulercount 552 | \newdimen\icmlruleroffset 553 | \newdimen\cv@lineheight 554 | \newdimen\cv@boxheight 555 | \newbox\cv@tmpbox 556 | \newcount\cv@refno 557 | \newcount\cv@tot 558 | % NUMBER with left flushed zeros \fillzeros[] 559 | \newcount\cv@tmpc@ \newcount\cv@tmpc 560 | \def\fillzeros[#1]#2{\cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi 561 | \cv@tmpc=1 % 562 | \loop\ifnum\cv@tmpc@<10 \else \divide\cv@tmpc@ by 10 \advance\cv@tmpc by 1 \fi 563 | \ifnum\cv@tmpc@=10\relax\cv@tmpc@=11\relax\fi \ifnum\cv@tmpc@>10 \repeat 564 | \ifnum#2<0\advance\cv@tmpc1\relax-\fi 565 | \loop\ifnum\cv@tmpc<#1\relax0\advance\cv@tmpc1\relax\fi \ifnum\cv@tmpc<#1 \repeat 566 | \cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi \relax\the\cv@tmpc@}% 567 | % \makevruler[][][][][] 568 | \def\makevruler[#1][#2][#3][#4][#5]{ 569 | \begingroup\offinterlineskip 570 | \textheight=#5\vbadness=10000\vfuzz=120ex\overfullrule=0pt% 571 | \global\setbox\icmlrulerbox=\vbox to \textheight{% 572 | { 573 | \parskip=0pt\hfuzz=150em\cv@boxheight=\textheight 574 | \cv@lineheight=#1\global\icmlrulercount=#2% 575 | \cv@tot\cv@boxheight\divide\cv@tot\cv@lineheight\advance\cv@tot2% 576 | \cv@refno1\vskip-\cv@lineheight\vskip1ex% 577 | \loop\setbox\cv@tmpbox=\hbox to0cm{ % side margin 578 | \hfil {\hfil\fillzeros[#4]\icmlrulercount} 579 | }% 580 | \ht\cv@tmpbox\cv@lineheight\dp\cv@tmpbox0pt\box\cv@tmpbox\break 581 | \advance\cv@refno1\global\advance\icmlrulercount#3\relax 582 | \ifnum\cv@refno<\cv@tot\repeat 583 | } 584 | } 585 | \endgroup 586 | }% 587 | \makeatother 588 | % ----- end of vruler 589 | 590 | 591 | % \makevruler[][][][][] 592 | \def\icmlruler#1{\makevruler[12pt][#1][1][3][\textheight]\usebox{\icmlrulerbox}} 593 | \AddToShipoutPicture{% 594 | \icmlruleroffset=\textheight 595 | \advance\icmlruleroffset by 5.2pt % top margin 596 | \color[rgb]{.7,.7,.7} 597 | \ifdefined\isaccepted \else 598 | \AtTextUpperLeft{% 599 | \put(\LenToUnit{-35pt},\LenToUnit{-\icmlruleroffset}){%left ruler 600 | \icmlruler{\icmlrulercount}} 601 | \put(\LenToUnit{1.04\textwidth},\LenToUnit{-\icmlruleroffset}){%right ruler 602 | \icmlruler{\icmlrulercount}} 603 | } 604 | \fi 605 | } 606 | \endinput 607 | -------------------------------------------------------------------------------- /Article-Journal/ICML12/icml_numpapers.eps: -------------------------------------------------------------------------------- 1 | %!PS-Adobe-2.0 EPSF-1.2 2 | %%Creator: MATLAB, The Mathworks, Inc. Version 7.2.0.294 (R2006a). Operating System: Linux 2.6.15-25-686 #1 SMP PREEMPT Wed Jun 14 11:34:19 UTC 2006 i686. 3 | %%Title: ./icml_numpapers.eps 4 | %%CreationDate: 12/23/2007 13:45:31 5 | %%DocumentNeededFonts: Times-Roman 6 | %%DocumentProcessColors: Cyan Magenta Yellow Black 7 | %%Pages: 1 8 | %%BoundingBox: 46 193 543 608 9 | %%EndComments 10 | 11 | %%BeginProlog 12 | % MathWorks dictionary 13 | /MathWorks 160 dict begin 14 | % definition operators 15 | /bdef {bind def} bind def 16 | /ldef {load def} bind def 17 | /xdef {exch def} bdef 18 | /xstore {exch store} bdef 19 | % operator abbreviations 20 | /c /clip ldef 21 | /cc /concat ldef 22 | /cp /closepath ldef 23 | /gr /grestore ldef 24 | /gs /gsave ldef 25 | /mt /moveto ldef 26 | /np /newpath ldef 27 | /cm /currentmatrix ldef 28 | /sm /setmatrix ldef 29 | /rm /rmoveto ldef 30 | /rl /rlineto ldef 31 | /s {show newpath} bdef 32 | /sc {setcmykcolor} bdef 33 | /sr /setrgbcolor ldef 34 | /sg /setgray ldef 35 | /w /setlinewidth ldef 36 | /j /setlinejoin ldef 37 | /cap /setlinecap ldef 38 | /rc {rectclip} bdef 39 | /rf {rectfill} bdef 40 | % page state control 41 | /pgsv () def 42 | /bpage {/pgsv save def} bdef 43 | /epage {pgsv restore} bdef 44 | /bplot /gsave ldef 45 | /eplot {stroke grestore} bdef 46 | % orientation switch 47 | /portraitMode 0 def /landscapeMode 1 def /rotateMode 2 def 48 | % coordinate system mappings 49 | /dpi2point 0 def 50 | % font control 51 | /FontSize 0 def 52 | /FMS {/FontSize xstore findfont [FontSize 0 0 FontSize neg 0 0] 53 | makefont setfont} bdef 54 | /reencode {exch dup where {pop load} {pop StandardEncoding} ifelse 55 | exch dup 3 1 roll findfont dup length dict begin 56 | { 1 index /FID ne {def}{pop pop} ifelse } forall 57 | /Encoding exch def currentdict end definefont pop} bdef 58 | /isroman {findfont /CharStrings get /Agrave known} bdef 59 | /FMSR {3 1 roll 1 index dup isroman {reencode} {pop pop} ifelse 60 | exch FMS} bdef 61 | /csm {1 dpi2point div -1 dpi2point div scale neg translate 62 | dup landscapeMode eq {pop -90 rotate} 63 | {rotateMode eq {90 rotate} if} ifelse} bdef 64 | % line types: solid, dotted, dashed, dotdash 65 | /SO { [] 0 setdash } bdef 66 | /DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef 67 | /DA { [6 dpi2point mul] 0 setdash } bdef 68 | /DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4 69 | dpi2point mul] 0 setdash } bdef 70 | % macros for lines and objects 71 | /L {lineto stroke} bdef 72 | /MP {3 1 roll moveto 1 sub {rlineto} repeat} bdef 73 | /AP {{rlineto} repeat} bdef 74 | /PDlw -1 def 75 | /W {/PDlw currentlinewidth def setlinewidth} def 76 | /PP {closepath eofill} bdef 77 | /DP {closepath stroke} bdef 78 | /MR {4 -2 roll moveto dup 0 exch rlineto exch 0 rlineto 79 | neg 0 exch rlineto closepath} bdef 80 | /FR {MR stroke} bdef 81 | /PR {MR fill} bdef 82 | /L1i {{currentfile picstr readhexstring pop} image} bdef 83 | /tMatrix matrix def 84 | /MakeOval {newpath tMatrix currentmatrix pop translate scale 85 | 0 0 1 0 360 arc tMatrix setmatrix} bdef 86 | /FO {MakeOval stroke} bdef 87 | /PO {MakeOval fill} bdef 88 | /PD {currentlinewidth 2 div 0 360 arc fill 89 | PDlw -1 eq not {PDlw w /PDlw -1 def} if} def 90 | /FA {newpath tMatrix currentmatrix pop translate scale 91 | 0 0 1 5 -2 roll arc tMatrix setmatrix stroke} bdef 92 | /PA {newpath tMatrix currentmatrix pop translate 0 0 moveto scale 93 | 0 0 1 5 -2 roll arc closepath tMatrix setmatrix fill} bdef 94 | /FAn {newpath tMatrix currentmatrix pop translate scale 95 | 0 0 1 5 -2 roll arcn tMatrix setmatrix stroke} bdef 96 | /PAn {newpath tMatrix currentmatrix pop translate 0 0 moveto scale 97 | 0 0 1 5 -2 roll arcn closepath tMatrix setmatrix fill} bdef 98 | /vradius 0 def /hradius 0 def /lry 0 def 99 | /lrx 0 def /uly 0 def /ulx 0 def /rad 0 def 100 | /MRR {/vradius xdef /hradius xdef /lry xdef /lrx xdef /uly xdef 101 | /ulx xdef newpath tMatrix currentmatrix pop ulx hradius add uly 102 | vradius add translate hradius vradius scale 0 0 1 180 270 arc 103 | tMatrix setmatrix lrx hradius sub uly vradius add translate 104 | hradius vradius scale 0 0 1 270 360 arc tMatrix setmatrix 105 | lrx hradius sub lry vradius sub translate hradius vradius scale 106 | 0 0 1 0 90 arc tMatrix setmatrix ulx hradius add lry vradius sub 107 | translate hradius vradius scale 0 0 1 90 180 arc tMatrix setmatrix 108 | closepath} bdef 109 | /FRR {MRR stroke } bdef 110 | /PRR {MRR fill } bdef 111 | /MlrRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lry uly sub 2 div def 112 | newpath tMatrix currentmatrix pop ulx rad add uly rad add translate 113 | rad rad scale 0 0 1 90 270 arc tMatrix setmatrix lrx rad sub lry rad 114 | sub translate rad rad scale 0 0 1 270 90 arc tMatrix setmatrix 115 | closepath} bdef 116 | /FlrRR {MlrRR stroke } bdef 117 | /PlrRR {MlrRR fill } bdef 118 | /MtbRR {/lry xdef /lrx xdef /uly xdef /ulx xdef /rad lrx ulx sub 2 div def 119 | newpath tMatrix currentmatrix pop ulx rad add uly rad add translate 120 | rad rad scale 0 0 1 180 360 arc tMatrix setmatrix lrx rad sub lry rad 121 | sub translate rad rad scale 0 0 1 0 180 arc tMatrix setmatrix 122 | closepath} bdef 123 | /FtbRR {MtbRR stroke } bdef 124 | /PtbRR {MtbRR fill } bdef 125 | /stri 6 array def /dtri 6 array def 126 | /smat 6 array def /dmat 6 array def 127 | /tmat1 6 array def /tmat2 6 array def /dif 3 array def 128 | /asub {/ind2 exch def /ind1 exch def dup dup 129 | ind1 get exch ind2 get sub exch } bdef 130 | /tri_to_matrix { 131 | 2 0 asub 3 1 asub 4 0 asub 5 1 asub 132 | dup 0 get exch 1 get 7 -1 roll astore } bdef 133 | /compute_transform { 134 | dmat dtri tri_to_matrix tmat1 invertmatrix 135 | smat stri tri_to_matrix tmat2 concatmatrix } bdef 136 | /ds {stri astore pop} bdef 137 | /dt {dtri astore pop} bdef 138 | /db {2 copy /cols xdef /rows xdef mul dup string 139 | currentfile exch readhexstring pop 140 | /bmap xdef pop pop} bdef 141 | /it {gs np dtri aload pop moveto lineto lineto cp c 142 | cols rows 8 compute_transform 143 | {bmap} image gr}bdef 144 | /il {newpath moveto lineto stroke}bdef 145 | currentdict end def 146 | %%EndProlog 147 | 148 | %%BeginSetup 149 | MathWorks begin 150 | 151 | 0 cap 152 | 153 | end 154 | %%EndSetup 155 | 156 | %%Page: 1 1 157 | %%BeginPageSetup 158 | %%PageBoundingBox: 46 193 543 608 159 | MathWorks begin 160 | bpage 161 | %%EndPageSetup 162 | 163 | %%BeginObject: obj1 164 | bplot 165 | 166 | /dpi2point 12 def 167 | portraitMode 0216 7344 csm 168 | 169 | 346 38 5959 4990 MR c np 170 | 84 dict begin %Colortable dictionary 171 | /c0 { 0.000000 0.000000 0.000000 sr} bdef 172 | /c1 { 1.000000 1.000000 1.000000 sr} bdef 173 | /c2 { 0.900000 0.000000 0.000000 sr} bdef 174 | /c3 { 0.000000 0.820000 0.000000 sr} bdef 175 | /c4 { 0.000000 0.000000 0.800000 sr} bdef 176 | /c5 { 0.910000 0.820000 0.320000 sr} bdef 177 | /c6 { 1.000000 0.260000 0.820000 sr} bdef 178 | /c7 { 0.000000 0.820000 0.820000 sr} bdef 179 | c0 180 | 1 j 181 | 1 sg 182 | 0 0 6913 5186 PR 183 | 6 w 184 | 4 w 185 | DO 186 | SO 187 | 6 w 188 | 0 sg 189 | 899 4615 mt 6255 4615 L 190 | 899 389 mt 6255 389 L 191 | 899 4615 mt 899 389 L 192 | 6255 4615 mt 6255 389 L 193 | 899 4615 mt 6255 4615 L 194 | 899 4615 mt 899 389 L 195 | 1142 4615 mt 1142 4561 L 196 | 1142 389 mt 1142 442 L 197 | %%IncludeResource: font Times-Roman 198 | /Times-Roman /ISOLatin1Encoding 168 FMSR 199 | 200 | 1058 4799 mt 201 | (88) s 202 | 1385 4615 mt 1385 4561 L 203 | 1385 389 mt 1385 442 L 204 | 1301 4799 mt 205 | (89) s 206 | 1629 4615 mt 1629 4561 L 207 | 1629 389 mt 1629 442 L 208 | 1545 4799 mt 209 | (90) s 210 | 1872 4615 mt 1872 4561 L 211 | 1872 389 mt 1872 442 L 212 | 1788 4799 mt 213 | (91) s 214 | 2116 4615 mt 2116 4561 L 215 | 2116 389 mt 2116 442 L 216 | 2032 4799 mt 217 | (92) s 218 | 2359 4615 mt 2359 4561 L 219 | 2359 389 mt 2359 442 L 220 | 2275 4799 mt 221 | (93) s 222 | 2603 4615 mt 2603 4561 L 223 | 2603 389 mt 2603 442 L 224 | 2519 4799 mt 225 | (94) s 226 | 2846 4615 mt 2846 4561 L 227 | 2846 389 mt 2846 442 L 228 | 2762 4799 mt 229 | (95) s 230 | 3090 4615 mt 3090 4561 L 231 | 3090 389 mt 3090 442 L 232 | 3006 4799 mt 233 | (96) s 234 | 3333 4615 mt 3333 4561 L 235 | 3333 389 mt 3333 442 L 236 | 3249 4799 mt 237 | (97) s 238 | 3577 4615 mt 3577 4561 L 239 | 3577 389 mt 3577 442 L 240 | 3493 4799 mt 241 | (98) s 242 | 3820 4615 mt 3820 4561 L 243 | 3820 389 mt 3820 442 L 244 | 3736 4799 mt 245 | (99) s 246 | 4063 4615 mt 4063 4561 L 247 | 4063 389 mt 4063 442 L 248 | 3979 4799 mt 249 | (00) s 250 | 4307 4615 mt 4307 4561 L 251 | 4307 389 mt 4307 442 L 252 | 4223 4799 mt 253 | (01) s 254 | 4550 4615 mt 4550 4561 L 255 | 4550 389 mt 4550 442 L 256 | 4466 4799 mt 257 | (02) s 258 | 4794 4615 mt 4794 4561 L 259 | 4794 389 mt 4794 442 L 260 | 4710 4799 mt 261 | (03) s 262 | 5037 4615 mt 5037 4561 L 263 | 5037 389 mt 5037 442 L 264 | 4953 4799 mt 265 | (04) s 266 | 5281 4615 mt 5281 4561 L 267 | 5281 389 mt 5281 442 L 268 | 5197 4799 mt 269 | (05) s 270 | 5524 4615 mt 5524 4561 L 271 | 5524 389 mt 5524 442 L 272 | 5440 4799 mt 273 | (06) s 274 | 5768 4615 mt 5768 4561 L 275 | 5768 389 mt 5768 442 L 276 | 5684 4799 mt 277 | (07) s 278 | 6011 4615 mt 6011 4561 L 279 | 6011 389 mt 6011 442 L 280 | 5927 4799 mt 281 | (08) s 282 | 899 4615 mt 952 4615 L 283 | 6255 4615 mt 6201 4615 L 284 | 780 4675 mt 285 | (0) s 286 | 899 4117 mt 952 4117 L 287 | 6255 4117 mt 6201 4117 L 288 | 696 4177 mt 289 | (20) s 290 | 899 3620 mt 952 3620 L 291 | 6255 3620 mt 6201 3620 L 292 | 696 3680 mt 293 | (40) s 294 | 899 3123 mt 952 3123 L 295 | 6255 3123 mt 6201 3123 L 296 | 696 3183 mt 297 | (60) s 298 | 899 2626 mt 952 2626 L 299 | 6255 2626 mt 6201 2626 L 300 | 696 2686 mt 301 | (80) s 302 | 899 2129 mt 952 2129 L 303 | 6255 2129 mt 6201 2129 L 304 | 612 2189 mt 305 | (100) s 306 | 899 1631 mt 952 1631 L 307 | 6255 1631 mt 6201 1631 L 308 | 612 1691 mt 309 | (120) s 310 | 899 1134 mt 952 1134 L 311 | 6255 1134 mt 6201 1134 L 312 | 612 1194 mt 313 | (140) s 314 | 899 637 mt 952 637 L 315 | 6255 637 mt 6201 637 L 316 | 612 697 mt 317 | (160) s 318 | 899 4615 mt 6255 4615 L 319 | 899 389 mt 6255 389 L 320 | 899 4615 mt 899 389 L 321 | 6255 4615 mt 6255 389 L 322 | gs 899 389 5357 4227 MR c np 323 | /c8 { 1.000000 0.000000 0.000000 sr} bdef 324 | c8 325 | 0 1219 194 0 0 -1219 1045 4615 4 MP 326 | PP 327 | 0 sg 328 | -194 0 0 1219 194 0 0 -1219 1045 4615 5 MP stroke 329 | c8 330 | 0 3182 195 0 0 -3182 1288 4615 4 MP 331 | PP 332 | 0 sg 333 | -195 0 0 3182 195 0 0 -3182 1288 4615 5 MP stroke 334 | c8 335 | 0 1243 195 0 0 -1243 1531 4615 4 MP 336 | PP 337 | 0 sg 338 | -195 0 0 1243 195 0 0 -1243 1531 4615 5 MP stroke 339 | c8 340 | 0 3182 195 0 0 -3182 1775 4615 4 MP 341 | PP 342 | 0 sg 343 | -195 0 0 3182 195 0 0 -3182 1775 4615 5 MP stroke 344 | c8 345 | 0 1492 195 0 0 -1492 2018 4615 4 MP 346 | PP 347 | 0 sg 348 | -195 0 0 1492 195 0 0 -1492 2018 4615 5 MP stroke 349 | c8 350 | 0 1094 195 0 0 -1094 2262 4615 4 MP 351 | PP 352 | 0 sg 353 | -195 0 0 1094 195 0 0 -1094 2262 4615 5 MP stroke 354 | c8 355 | 0 1119 195 0 0 -1119 2505 4615 4 MP 356 | PP 357 | 0 sg 358 | -195 0 0 1119 195 0 0 -1119 2505 4615 5 MP stroke 359 | c8 360 | 0 1765 195 0 0 -1765 2749 4615 4 MP 361 | PP 362 | 0 sg 363 | -195 0 0 1765 195 0 0 -1765 2749 4615 5 MP stroke 364 | c8 365 | 0 1616 195 0 0 -1616 2992 4615 4 MP 366 | PP 367 | 0 sg 368 | -195 0 0 1616 195 0 0 -1616 2992 4615 5 MP stroke 369 | c8 370 | 0 1194 194 0 0 -1194 3236 4615 4 MP 371 | PP 372 | 0 sg 373 | -194 0 0 1194 194 0 0 -1194 3236 4615 5 MP stroke 374 | c8 375 | 0 1641 195 0 0 -1641 3479 4615 4 MP 376 | PP 377 | 0 sg 378 | -195 0 0 1641 195 0 0 -1641 3479 4615 5 MP stroke 379 | c8 380 | 0 1343 194 0 0 -1343 3723 4615 4 MP 381 | PP 382 | 0 sg 383 | -194 0 0 1343 194 0 0 -1343 3723 4615 5 MP stroke 384 | c8 385 | 0 3754 195 0 0 -3754 3966 4615 4 MP 386 | PP 387 | 0 sg 388 | -195 0 0 3754 195 0 0 -3754 3966 4615 5 MP stroke 389 | c8 390 | 0 1989 195 0 0 -1989 4209 4615 4 MP 391 | PP 392 | 0 sg 393 | -195 0 0 1989 195 0 0 -1989 4209 4615 5 MP stroke 394 | c8 395 | 0 2163 195 0 0 -2163 4453 4615 4 MP 396 | PP 397 | 0 sg 398 | -195 0 0 2163 195 0 0 -2163 4453 4615 5 MP stroke 399 | c8 400 | 0 2884 195 0 0 -2884 4696 4615 4 MP 401 | PP 402 | 0 sg 403 | -195 0 0 2884 195 0 0 -2884 4696 4615 5 MP stroke 404 | c8 405 | 0 2909 195 0 0 -2909 4940 4615 4 MP 406 | PP 407 | 0 sg 408 | -195 0 0 2909 195 0 0 -2909 4940 4615 5 MP stroke 409 | c8 410 | 0 3332 195 0 0 -3332 5183 4615 4 MP 411 | PP 412 | 0 sg 413 | -195 0 0 3332 195 0 0 -3332 5183 4615 5 MP stroke 414 | c8 415 | 0 3481 195 0 0 -3481 5427 4615 4 MP 416 | PP 417 | 0 sg 418 | -195 0 0 3481 195 0 0 -3481 5427 4615 5 MP stroke 419 | c8 420 | 0 3729 195 0 0 -3729 5670 4615 4 MP 421 | PP 422 | 0 sg 423 | -195 0 0 3729 195 0 0 -3729 5670 4615 5 MP stroke 424 | c8 425 | 0 3978 194 0 0 -3978 5914 4615 4 MP 426 | PP 427 | 0 sg 428 | -194 0 0 3978 194 0 0 -3978 5914 4615 5 MP stroke 429 | 5356 0 899 4615 2 MP stroke 430 | gr 431 | 432 | 2654 4967 mt 433 | (Conference/Workshop Year) s 434 | 521 3446 mt -90 rotate 435 | (Number of Accepted Papers) s 436 | 90 rotate 437 | 1559 261 mt 438 | (Historial ICML Locations and Numbers of Accepted Papers) s 439 | %%IncludeResource: font Times-Roman 440 | /Times-Roman /ISOLatin1Encoding 132 FMSR 441 | 442 | 1187 4540 mt -90 rotate 443 | (Ann Arbor, MI) s 444 | 90 rotate 445 | 1430 4540 mt -90 rotate 446 | (Itaca, NY) s 447 | 90 rotate 448 | 1674 4540 mt -90 rotate 449 | (Austin, TX) s 450 | 90 rotate 451 | 1917 4540 mt -90 rotate 452 | (Evanston, IL) s 453 | 90 rotate 454 | 2161 4540 mt -90 rotate 455 | (Aberdeen, Scotland) s 456 | 90 rotate 457 | 2404 4540 mt -90 rotate 458 | (Amherst, MA) s 459 | 90 rotate 460 | 2648 4565 mt -90 rotate 461 | (New Brunswick, NJ) s 462 | 90 rotate 463 | 2891 4540 mt -90 rotate 464 | (Tahoe, CA) s 465 | 90 rotate 466 | 3135 4540 mt -90 rotate 467 | (Bari, Italy) s 468 | 90 rotate 469 | 3378 4540 mt -90 rotate 470 | (Nashville, TN) s 471 | 90 rotate 472 | 3622 4540 mt -90 rotate 473 | (Madison, WI) s 474 | 90 rotate 475 | 3865 4540 mt -90 rotate 476 | (Bled, Slovenia) s 477 | 90 rotate 478 | 4108 4540 mt -90 rotate 479 | (Stanford, CA) s 480 | 90 rotate 481 | 4352 4540 mt -90 rotate 482 | (Williamstown, CA) s 483 | 90 rotate 484 | 4595 4540 mt -90 rotate 485 | (Sydney, Australia) s 486 | 90 rotate 487 | 4839 4540 mt -90 rotate 488 | (Washington, DC) s 489 | 90 rotate 490 | 5082 4540 mt -90 rotate 491 | (Banff, Canada) s 492 | 90 rotate 493 | 5326 4540 mt -90 rotate 494 | (Bonn, Germany) s 495 | 90 rotate 496 | 5569 4540 mt -90 rotate 497 | (Pittsburgh, PA) s 498 | 90 rotate 499 | 5813 4540 mt -90 rotate 500 | (Corvalis, OR) s 501 | 90 rotate 502 | 6056 4540 mt -90 rotate 503 | (Helsinki, Finland \(estimated\)) s 504 | 90 rotate 505 | 506 | end %%Color Dict 507 | 508 | eplot 509 | %%EndObject 510 | 511 | epage 512 | end 513 | 514 | showpage 515 | 516 | %%Trailer 517 | %%EOF 518 | -------------------------------------------------------------------------------- /Article-Journal/ICML12/icml_numpapers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/ICML12/icml_numpapers.pdf -------------------------------------------------------------------------------- /Article-Journal/JournalArticle/article_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/JournalArticle/article_2.pdf -------------------------------------------------------------------------------- /Article-Journal/JournalArticle/article_2.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % Journal Article 3 | % LaTeX Template 4 | % Version 1.3 (9/9/13) 5 | % 6 | % This template has been downloaded from: 7 | % http://www.LaTeXTemplates.com 8 | % 9 | % Original author: 10 | % Frits Wenneker (http://www.howtotex.com) 11 | % 12 | % License: 13 | % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) 14 | % 15 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 | 17 | %---------------------------------------------------------------------------------------- 18 | % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS 19 | %---------------------------------------------------------------------------------------- 20 | 21 | \documentclass[twoside]{article} 22 | 23 | \usepackage{lipsum} % Package to generate dummy text throughout this template 24 | 25 | \usepackage[sc]{mathpazo} % Use the Palatino font 26 | \usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs 27 | \linespread{1.05} % Line spacing - Palatino needs more space between lines 28 | \usepackage{microtype} % Slightly tweak font spacing for aesthetics 29 | 30 | \usepackage[hmarginratio=1:1,top=32mm,columnsep=20pt]{geometry} % Document margins 31 | \usepackage{multicol} % Used for the two-column layout of the document 32 | \usepackage[hang, small,labelfont=bf,up,textfont=it,up]{caption} % Custom captions under/above floats in tables or figures 33 | \usepackage{booktabs} % Horizontal rules in tables 34 | \usepackage{float} % Required for tables and figures in the multi-column environment - they need to be placed in specific locations with the [H] (e.g. \begin{table}[H]) 35 | \usepackage{hyperref} % For hyperlinks in the PDF 36 | 37 | \usepackage{lettrine} % The lettrine is the first enlarged letter at the beginning of the text 38 | \usepackage{paralist} % Used for the compactitem environment which makes bullet points with less space between them 39 | 40 | \usepackage{abstract} % Allows abstract customization 41 | \renewcommand{\abstractnamefont}{\normalfont\bfseries} % Set the "Abstract" text to bold 42 | \renewcommand{\abstracttextfont}{\normalfont\small\itshape} % Set the abstract itself to small italic text 43 | 44 | \usepackage{titlesec} % Allows customization of titles 45 | \renewcommand\thesection{\Roman{section}} % Roman numerals for the sections 46 | \renewcommand\thesubsection{\Roman{subsection}} % Roman numerals for subsections 47 | \titleformat{\section}[block]{\large\scshape\centering}{\thesection.}{1em}{} % Change the look of the section titles 48 | \titleformat{\subsection}[block]{\large}{\thesubsection.}{1em}{} % Change the look of the section titles 49 | 50 | \usepackage{fancyhdr} % Headers and footers 51 | \pagestyle{fancy} % All pages have headers and footers 52 | \fancyhead{} % Blank out the default header 53 | \fancyfoot{} % Blank out the default footer 54 | \fancyhead[C]{Running title $\bullet$ November 2012 $\bullet$ Vol. XXI, No. 1} % Custom header text 55 | \fancyfoot[RO,LE]{\thepage} % Custom footer text 56 | 57 | %---------------------------------------------------------------------------------------- 58 | % TITLE SECTION 59 | %---------------------------------------------------------------------------------------- 60 | 61 | \title{\vspace{-15mm}\fontsize{24pt}{10pt}\selectfont\textbf{Article Title}} % Article title 62 | 63 | \author{ 64 | \large 65 | \textsc{John Smith}\thanks{A thank you or further information}\\[2mm] % Your name 66 | \normalsize University of California \\ % Your institution 67 | \normalsize \href{mailto:john@smith.com}{john@smith.com} % Your email address 68 | \vspace{-5mm} 69 | } 70 | \date{} 71 | 72 | %---------------------------------------------------------------------------------------- 73 | 74 | \begin{document} 75 | 76 | \maketitle % Insert title 77 | 78 | \thispagestyle{fancy} % All pages have headers and footers 79 | 80 | %---------------------------------------------------------------------------------------- 81 | % ABSTRACT 82 | %---------------------------------------------------------------------------------------- 83 | 84 | \begin{abstract} 85 | 86 | \noindent \lipsum[1] % Dummy abstract text 87 | 88 | \end{abstract} 89 | 90 | %---------------------------------------------------------------------------------------- 91 | % ARTICLE CONTENTS 92 | %---------------------------------------------------------------------------------------- 93 | 94 | \begin{multicols}{2} % Two-column layout throughout the main article text 95 | 96 | \section{Introduction} 97 | 98 | \lettrine[nindent=0em,lines=3]{L} orem ipsum dolor sit amet, consectetur adipiscing elit. 99 | \lipsum[2-3] % Dummy text 100 | 101 | %------------------------------------------------ 102 | 103 | \section{Methods} 104 | 105 | Maecenas sed ultricies felis. Sed imperdiet dictum arcu a egestas. 106 | \begin{compactitem} 107 | \item Donec dolor arcu, rutrum id molestie in, viverra sed diam 108 | \item Curabitur feugiat 109 | \item turpis sed auctor facilisis 110 | \item arcu eros accumsan lorem, at posuere mi diam sit amet tortor 111 | \item Fusce fermentum, mi sit amet euismod rutrum 112 | \item sem lorem molestie diam, iaculis aliquet sapien tortor non nisi 113 | \item Pellentesque bibendum pretium aliquet 114 | \end{compactitem} 115 | \lipsum[4] % Dummy text 116 | 117 | %------------------------------------------------ 118 | 119 | \section{Results} 120 | 121 | \begin{table}[H] 122 | \caption{Example table} 123 | \centering 124 | \begin{tabular}{llr} 125 | \toprule 126 | \multicolumn{2}{c}{Name} \\ 127 | \cmidrule(r){1-2} 128 | First name & Last Name & Grade \\ 129 | \midrule 130 | John & Doe & $7.5$ \\ 131 | Richard & Miles & $2$ \\ 132 | \bottomrule 133 | \end{tabular} 134 | \end{table} 135 | 136 | \lipsum[5] % Dummy text 137 | 138 | \begin{equation} 139 | \label{eq:emc} 140 | e = mc^2 141 | \end{equation} 142 | 143 | \lipsum[6] % Dummy text 144 | 145 | %------------------------------------------------ 146 | 147 | \section{Discussion} 148 | 149 | \subsection{Subsection One} 150 | 151 | \lipsum[7] % Dummy text 152 | 153 | \subsection{Subsection Two} 154 | 155 | \lipsum[8] % Dummy text 156 | 157 | %---------------------------------------------------------------------------------------- 158 | % REFERENCE LIST 159 | %---------------------------------------------------------------------------------------- 160 | 161 | \begin{thebibliography}{99} % Bibliography - this is intentionally simple in this template 162 | 163 | \bibitem[Figueredo and Wolf, 2009]{Figueredo:2009dg} 164 | Figueredo, A.~J. and Wolf, P. S.~A. (2009). 165 | \newblock Assortative pairing and life history strategy - a cross-cultural 166 | study. 167 | \newblock {\em Human Nature}, 20:317--330. 168 | 169 | \end{thebibliography} 170 | 171 | %---------------------------------------------------------------------------------------- 172 | 173 | \end{multicols} 174 | 175 | \end{document} 176 | -------------------------------------------------------------------------------- /Article-Journal/NIPS13/nips13submit_e.sty: -------------------------------------------------------------------------------- 1 | %%%% NIPS Macros (LaTex) 2 | %%%% Style File 3 | %%%% Dec 12, 1990 Rev Aug 14, 1991; Sept, 1995; April, 1997; April, 1999 4 | 5 | % This file can be used with Latex2e whether running in main mode, or 6 | % 2.09 compatibility mode. 7 | % 8 | % If using main mode, you need to include the commands 9 | % \documentclass{article} 10 | % \usepackage{nips10submit_e,times} 11 | % as the first lines in your document. Or, if you do not have Times 12 | % Roman font available, you can just use 13 | % \documentclass{article} 14 | % \usepackage{nips10submit_e} 15 | % instead. 16 | % 17 | % If using 2.09 compatibility mode, you need to include the command 18 | % \documentstyle[nips10submit_09,times]{article} 19 | % as the first line in your document. Or, if you do not have Times 20 | % Roman font available, you can include the command 21 | % \documentstyle[nips10submit_09]{article} 22 | % instead. 23 | 24 | % Change the overall width of the page. If these parameters are 25 | % changed, they will require corresponding changes in the 26 | % maketitle section. 27 | % 28 | \usepackage{eso-pic} % used by \AddToShipoutPicture 29 | 30 | \renewcommand{\topfraction}{0.95} % let figure take up nearly whole page 31 | \renewcommand{\textfraction}{0.05} % let figure take up nearly whole page 32 | 33 | % Define nipsfinal, set to true if nipsfinalcopy is defined 34 | \newif\ifnipsfinal 35 | \nipsfinalfalse 36 | \def\nipsfinalcopy{\nipsfinaltrue} 37 | \font\nipstenhv = phvb at 8pt % *** IF THIS FAILS, SEE nips10submit_e.sty *** 38 | 39 | % Specify the dimensions of each page 40 | 41 | \setlength{\paperheight}{11in} 42 | \setlength{\paperwidth}{8.5in} 43 | 44 | \oddsidemargin .5in % Note \oddsidemargin = \evensidemargin 45 | \evensidemargin .5in 46 | \marginparwidth 0.07 true in 47 | %\marginparwidth 0.75 true in 48 | %\topmargin 0 true pt % Nominal distance from top of page to top of 49 | %\topmargin 0.125in 50 | \topmargin -0.625in 51 | \addtolength{\headsep}{0.25in} 52 | \textheight 9.0 true in % Height of text (including footnotes & figures) 53 | \textwidth 5.5 true in % Width of text line. 54 | \widowpenalty=10000 55 | \clubpenalty=10000 56 | 57 | % \thispagestyle{empty} \pagestyle{empty} 58 | \flushbottom \sloppy 59 | 60 | % We're never going to need a table of contents, so just flush it to 61 | % save space --- suggested by drstrip@sandia-2 62 | \def\addcontentsline#1#2#3{} 63 | 64 | % Title stuff, taken from deproc. 65 | \def\maketitle{\par 66 | \begingroup 67 | \def\thefootnote{\fnsymbol{footnote}} 68 | \def\@makefnmark{\hbox to 0pt{$^{\@thefnmark}$\hss}} % for perfect author 69 | % name centering 70 | % The footnote-mark was overlapping the footnote-text, 71 | % added the following to fix this problem (MK) 72 | \long\def\@makefntext##1{\parindent 1em\noindent 73 | \hbox to1.8em{\hss $\m@th ^{\@thefnmark}$}##1} 74 | \@maketitle \@thanks 75 | \endgroup 76 | \setcounter{footnote}{0} 77 | \let\maketitle\relax \let\@maketitle\relax 78 | \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax} 79 | 80 | % The toptitlebar has been raised to top-justify the first page 81 | 82 | % Title (includes both anonimized and non-anonimized versions) 83 | \def\@maketitle{\vbox{\hsize\textwidth 84 | \linewidth\hsize \vskip 0.1in \toptitlebar \centering 85 | {\LARGE\bf \@title\par} \bottomtitlebar % \vskip 0.1in % minus 86 | \ifnipsfinal 87 | \def\And{\end{tabular}\hfil\linebreak[0]\hfil 88 | \begin{tabular}[t]{c}\bf\rule{\z@}{24pt}\ignorespaces}% 89 | \def\AND{\end{tabular}\hfil\linebreak[4]\hfil 90 | \begin{tabular}[t]{c}\bf\rule{\z@}{24pt}\ignorespaces}% 91 | \begin{tabular}[t]{c}\bf\rule{\z@}{24pt}\@author\end{tabular}% 92 | \else 93 | \begin{tabular}[t]{c}\bf\rule{\z@}{24pt} 94 | Anonymous Author(s) \\ 95 | Affiliation \\ 96 | Address \\ 97 | \texttt{email} \\ 98 | \end{tabular}% 99 | \fi 100 | \vskip 0.3in minus 0.1in}} 101 | 102 | \renewenvironment{abstract}{\vskip.075in\centerline{\large\bf 103 | Abstract}\vspace{0.5ex}\begin{quote}}{\par\end{quote}\vskip 1ex} 104 | 105 | % sections with less space 106 | \def\section{\@startsection {section}{1}{\z@}{-2.0ex plus 107 | -0.5ex minus -.2ex}{1.5ex plus 0.3ex 108 | minus0.2ex}{\large\bf\raggedright}} 109 | 110 | \def\subsection{\@startsection{subsection}{2}{\z@}{-1.8ex plus 111 | -0.5ex minus -.2ex}{0.8ex plus .2ex}{\normalsize\bf\raggedright}} 112 | \def\subsubsection{\@startsection{subsubsection}{3}{\z@}{-1.5ex 113 | plus -0.5ex minus -.2ex}{0.5ex plus 114 | .2ex}{\normalsize\bf\raggedright}} 115 | \def\paragraph{\@startsection{paragraph}{4}{\z@}{1.5ex plus 116 | 0.5ex minus .2ex}{-1em}{\normalsize\bf}} 117 | \def\subparagraph{\@startsection{subparagraph}{5}{\z@}{1.5ex plus 118 | 0.5ex minus .2ex}{-1em}{\normalsize\bf}} 119 | \def\subsubsubsection{\vskip 120 | 5pt{\noindent\normalsize\rm\raggedright}} 121 | 122 | 123 | % Footnotes 124 | \footnotesep 6.65pt % 125 | \skip\footins 9pt plus 4pt minus 2pt 126 | \def\footnoterule{\kern-3pt \hrule width 12pc \kern 2.6pt } 127 | \setcounter{footnote}{0} 128 | 129 | % Lists and paragraphs 130 | \parindent 0pt 131 | \topsep 4pt plus 1pt minus 2pt 132 | \partopsep 1pt plus 0.5pt minus 0.5pt 133 | \itemsep 2pt plus 1pt minus 0.5pt 134 | \parsep 2pt plus 1pt minus 0.5pt 135 | \parskip .5pc 136 | 137 | 138 | %\leftmargin2em 139 | \leftmargin3pc 140 | \leftmargini\leftmargin \leftmarginii 2em 141 | \leftmarginiii 1.5em \leftmarginiv 1.0em \leftmarginv .5em 142 | 143 | %\labelsep \labelsep 5pt 144 | 145 | \def\@listi{\leftmargin\leftmargini} 146 | \def\@listii{\leftmargin\leftmarginii 147 | \labelwidth\leftmarginii\advance\labelwidth-\labelsep 148 | \topsep 2pt plus 1pt minus 0.5pt 149 | \parsep 1pt plus 0.5pt minus 0.5pt 150 | \itemsep \parsep} 151 | \def\@listiii{\leftmargin\leftmarginiii 152 | \labelwidth\leftmarginiii\advance\labelwidth-\labelsep 153 | \topsep 1pt plus 0.5pt minus 0.5pt 154 | \parsep \z@ \partopsep 0.5pt plus 0pt minus 0.5pt 155 | \itemsep \topsep} 156 | \def\@listiv{\leftmargin\leftmarginiv 157 | \labelwidth\leftmarginiv\advance\labelwidth-\labelsep} 158 | \def\@listv{\leftmargin\leftmarginv 159 | \labelwidth\leftmarginv\advance\labelwidth-\labelsep} 160 | \def\@listvi{\leftmargin\leftmarginvi 161 | \labelwidth\leftmarginvi\advance\labelwidth-\labelsep} 162 | 163 | \abovedisplayskip 7pt plus2pt minus5pt% 164 | \belowdisplayskip \abovedisplayskip 165 | \abovedisplayshortskip 0pt plus3pt% 166 | \belowdisplayshortskip 4pt plus3pt minus3pt% 167 | 168 | % Less leading in most fonts (due to the narrow columns) 169 | % The choices were between 1-pt and 1.5-pt leading 170 | %\def\@normalsize{\@setsize\normalsize{11pt}\xpt\@xpt} % got rid of @ (MK) 171 | \def\normalsize{\@setsize\normalsize{11pt}\xpt\@xpt} 172 | \def\small{\@setsize\small{10pt}\ixpt\@ixpt} 173 | \def\footnotesize{\@setsize\footnotesize{10pt}\ixpt\@ixpt} 174 | \def\scriptsize{\@setsize\scriptsize{8pt}\viipt\@viipt} 175 | \def\tiny{\@setsize\tiny{7pt}\vipt\@vipt} 176 | \def\large{\@setsize\large{14pt}\xiipt\@xiipt} 177 | \def\Large{\@setsize\Large{16pt}\xivpt\@xivpt} 178 | \def\LARGE{\@setsize\LARGE{20pt}\xviipt\@xviipt} 179 | \def\huge{\@setsize\huge{23pt}\xxpt\@xxpt} 180 | \def\Huge{\@setsize\Huge{28pt}\xxvpt\@xxvpt} 181 | 182 | \def\toptitlebar{\hrule height4pt\vskip .25in\vskip-\parskip} 183 | 184 | \def\bottomtitlebar{\vskip .29in\vskip-\parskip\hrule height1pt\vskip 185 | .09in} % 186 | %Reduced second vskip to compensate for adding the strut in \@author 187 | 188 | % Vertical Ruler 189 | % This code is, largely, from the CVPR 2010 conference style file 190 | % ----- define vruler 191 | \makeatletter 192 | \newbox\nipsrulerbox 193 | \newcount\nipsrulercount 194 | \newdimen\nipsruleroffset 195 | \newdimen\cv@lineheight 196 | \newdimen\cv@boxheight 197 | \newbox\cv@tmpbox 198 | \newcount\cv@refno 199 | \newcount\cv@tot 200 | % NUMBER with left flushed zeros \fillzeros[] 201 | \newcount\cv@tmpc@ \newcount\cv@tmpc 202 | \def\fillzeros[#1]#2{\cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi 203 | \cv@tmpc=1 % 204 | \loop\ifnum\cv@tmpc@<10 \else \divide\cv@tmpc@ by 10 \advance\cv@tmpc by 1 \fi 205 | \ifnum\cv@tmpc@=10\relax\cv@tmpc@=11\relax\fi \ifnum\cv@tmpc@>10 \repeat 206 | \ifnum#2<0\advance\cv@tmpc1\relax-\fi 207 | \loop\ifnum\cv@tmpc<#1\relax0\advance\cv@tmpc1\relax\fi \ifnum\cv@tmpc<#1 \repeat 208 | \cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi \relax\the\cv@tmpc@}% 209 | % \makevruler[][][][][] 210 | \def\makevruler[#1][#2][#3][#4][#5]{\begingroup\offinterlineskip 211 | \textheight=#5\vbadness=10000\vfuzz=120ex\overfullrule=0pt% 212 | \global\setbox\nipsrulerbox=\vbox to \textheight{% 213 | {\parskip=0pt\hfuzz=150em\cv@boxheight=\textheight 214 | \cv@lineheight=#1\global\nipsrulercount=#2% 215 | \cv@tot\cv@boxheight\divide\cv@tot\cv@lineheight\advance\cv@tot2% 216 | \cv@refno1\vskip-\cv@lineheight\vskip1ex% 217 | \loop\setbox\cv@tmpbox=\hbox to0cm{{\nipstenhv\hfil\fillzeros[#4]\nipsrulercount}}% 218 | \ht\cv@tmpbox\cv@lineheight\dp\cv@tmpbox0pt\box\cv@tmpbox\break 219 | \advance\cv@refno1\global\advance\nipsrulercount#3\relax 220 | \ifnum\cv@refno<\cv@tot\repeat}}\endgroup}% 221 | \makeatother 222 | % ----- end of vruler 223 | 224 | % \makevruler[][][][][] 225 | \def\nipsruler#1{\makevruler[12pt][#1][1][3][0.993\textheight]\usebox{\nipsrulerbox}} 226 | \AddToShipoutPicture{% 227 | \ifnipsfinal\else 228 | \nipsruleroffset=\textheight 229 | \advance\nipsruleroffset by -3.7pt 230 | \color[rgb]{.7,.7,.7} 231 | \AtTextUpperLeft{% 232 | \put(\LenToUnit{-35pt},\LenToUnit{-\nipsruleroffset}){%left ruler 233 | \nipsruler{\nipsrulercount}} 234 | } 235 | \fi 236 | } 237 | -------------------------------------------------------------------------------- /Article-Journal/NIPS13/nips2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/NIPS13/nips2013.pdf -------------------------------------------------------------------------------- /Article-Journal/NIPS13/nips2013.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} % For LaTeX2e 2 | \usepackage{nips13submit_e,times} 3 | \usepackage{hyperref} 4 | \usepackage{url} 5 | %\documentstyle[nips13submit_09,times,art10]{article} % For LaTeX 2.09 6 | 7 | 8 | \title{Formatting Instructions for NIPS 2013} 9 | 10 | 11 | \author{ 12 | David S.~Hippocampus\thanks{ Use footnote for providing further information 13 | about author (webpage, alternative address)---\emph{not} for acknowledging 14 | funding agencies.} \\ 15 | Department of Computer Science\\ 16 | Cranberry-Lemon University\\ 17 | Pittsburgh, PA 15213 \\ 18 | \texttt{hippo@cs.cranberry-lemon.edu} \\ 19 | \And 20 | Coauthor \\ 21 | Affiliation \\ 22 | Address \\ 23 | \texttt{email} \\ 24 | \AND 25 | Coauthor \\ 26 | Affiliation \\ 27 | Address \\ 28 | \texttt{email} \\ 29 | \And 30 | Coauthor \\ 31 | Affiliation \\ 32 | Address \\ 33 | \texttt{email} \\ 34 | \And 35 | Coauthor \\ 36 | Affiliation \\ 37 | Address \\ 38 | \texttt{email} \\ 39 | (if needed)\\ 40 | } 41 | 42 | % The \author macro works with any number of authors. There are two commands 43 | % used to separate the names and addresses of multiple authors: \And and \AND. 44 | % 45 | % Using \And between authors leaves it to \LaTeX{} to determine where to break 46 | % the lines. Using \AND forces a linebreak at that point. So, if \LaTeX{} 47 | % puts 3 of 4 authors names on the first line, and the last on the second 48 | % line, try using \AND instead of \And before the third author name. 49 | 50 | \newcommand{\fix}{\marginpar{FIX}} 51 | \newcommand{\new}{\marginpar{NEW}} 52 | 53 | \nipsfinalcopy % Uncomment for camera-ready version 54 | 55 | \begin{document} 56 | 57 | 58 | \maketitle 59 | 60 | \begin{abstract} 61 | The abstract paragraph should be indented 1/2~inch (3~picas) on both left and 62 | right-hand margins. Use 10~point type, with a vertical spacing of 11~points. 63 | The word \textbf{Abstract} must be centered, bold, and in point size 12. Two 64 | line spaces precede the abstract. The abstract must be limited to one 65 | paragraph. 66 | \end{abstract} 67 | 68 | \section{Submission of papers to NIPS 2013} 69 | 70 | NIPS requires electronic submissions. The electronic submission site is 71 | \begin{center} 72 | \url{http://papers.nips.cc} 73 | \end{center} 74 | 75 | Please read carefully the 76 | instructions below, and follow them faithfully. 77 | \subsection{Style} 78 | 79 | Papers to be submitted to NIPS 2013 must be prepared according to the 80 | instructions presented here. Papers may be only up to eight pages long, 81 | including figures. Since 2009 an additional ninth page \textit{containing only 82 | cited references} is allowed. Papers that exceed nine pages will not be 83 | reviewed, or in any other way considered for presentation at the conference. 84 | %This is a strict upper bound. 85 | 86 | Please note that this year we have introduced automatic line number generation 87 | into the style file (for \LaTeXe and Word versions). This is to help reviewers 88 | refer to specific lines of the paper when they make their comments. Please do 89 | NOT refer to these line numbers in your paper as they will be removed from the 90 | style file for the final version of accepted papers. 91 | 92 | The margins in 2013 are the same as since 2007, which allow for $\approx 15\%$ 93 | more words in the paper compared to earlier years. We are also again using 94 | double-blind reviewing. Both of these require the use of new style files. 95 | 96 | Authors are required to use the NIPS \LaTeX{} style files obtainable at the 97 | NIPS website as indicated below. Please make sure you use the current files and 98 | not previous versions. Tweaking the style files may be grounds for rejection. 99 | 100 | %% \subsection{Double-blind reviewing} 101 | 102 | %% This year we are doing double-blind reviewing: the reviewers will not know 103 | %% who the authors of the paper are. For submission, the NIPS style file will 104 | %% automatically anonymize the author list at the beginning of the paper. 105 | 106 | %% Please write your paper in such a way to preserve anonymity. Refer to 107 | %% previous work by the author(s) in the third person, rather than first 108 | %% person. Do not provide Web links to supporting material at an identifiable 109 | %% web site. 110 | 111 | %%\subsection{Electronic submission} 112 | %% 113 | %% \textbf{THE SUBMISSION DEADLINE IS MAY 31st, 2013. SUBMISSIONS MUST BE LOGGED BY 114 | %% 23:00, MAY 31st, 2013, UNIVERSAL TIME} 115 | 116 | %% You must enter your submission in the electronic submission form available at 117 | %% the NIPS website listed above. You will be asked to enter paper title, name of 118 | %% all authors, keyword(s), and data about the contact 119 | %% author (name, full address, telephone, fax, and email). You will need to 120 | %% upload an electronic (postscript or pdf) version of your paper. 121 | 122 | %% You can upload more than one version of your paper, until the 123 | %% submission deadline. We strongly recommended uploading your paper in 124 | %% advance of the deadline, so you can avoid last-minute server congestion. 125 | %% 126 | %% Note that your submission is only valid if you get an e-mail 127 | %% confirmation from the server. If you do not get such an e-mail, please 128 | %% try uploading again. 129 | 130 | 131 | \subsection{Retrieval of style files} 132 | 133 | The style files for NIPS and other conference information are available on the World Wide Web at 134 | \begin{center} 135 | \url{http://www.nips.cc/} 136 | \end{center} 137 | The file \verb+nips2013.pdf+ contains these 138 | instructions and illustrates the 139 | various formatting requirements your NIPS paper must satisfy. \LaTeX{} 140 | users can choose between two style files: 141 | \verb+nips11submit_09.sty+ (to be used with \LaTeX{} version 2.09) and 142 | \verb+nips11submit_e.sty+ (to be used with \LaTeX{}2e). The file 143 | \verb+nips2013.tex+ may be used as a ``shell'' for writing your paper. All you 144 | have to do is replace the author, title, abstract, and text of the paper with 145 | your own. The file 146 | \verb+nips2013.rtf+ is provided as a shell for MS Word users. 147 | 148 | The formatting instructions contained in these style files are summarized in 149 | sections \ref{gen_inst}, \ref{headings}, and \ref{others} below. 150 | 151 | %% \subsection{Keywords for paper submission} 152 | %% Your NIPS paper can be submitted with any of the following keywords (more than one keyword is possible for each paper): 153 | 154 | %% \begin{verbatim} 155 | %% Bioinformatics 156 | %% Biological Vision 157 | %% Brain Imaging and Brain Computer Interfacing 158 | %% Clustering 159 | %% Cognitive Science 160 | %% Control and Reinforcement Learning 161 | %% Dimensionality Reduction and Manifolds 162 | %% Feature Selection 163 | %% Gaussian Processes 164 | %% Graphical Models 165 | %% Hardware Technologies 166 | %% Kernels 167 | %% Learning Theory 168 | %% Machine Vision 169 | %% Margins and Boosting 170 | %% Neural Networks 171 | %% Neuroscience 172 | %% Other Algorithms and Architectures 173 | %% Other Applications 174 | %% Semi-supervised Learning 175 | %% Speech and Signal Processing 176 | %% Text and Language Applications 177 | 178 | %% \end{verbatim} 179 | 180 | \section{General formatting instructions} 181 | \label{gen_inst} 182 | 183 | The text must be confined within a rectangle 5.5~inches (33~picas) wide and 184 | 9~inches (54~picas) long. The left margin is 1.5~inch (9~picas). 185 | Use 10~point type with a vertical spacing of 11~points. Times New Roman is the 186 | preferred typeface throughout. Paragraphs are separated by 1/2~line space, 187 | with no indentation. 188 | 189 | Paper title is 17~point, initial caps/lower case, bold, centered between 190 | 2~horizontal rules. Top rule is 4~points thick and bottom rule is 1~point 191 | thick. Allow 1/4~inch space above and below title to rules. All pages should 192 | start at 1~inch (6~picas) from the top of the page. 193 | 194 | %The version of the paper submitted for review should have ``Anonymous Author(s)'' as the author of the paper. 195 | 196 | For the final version, authors' names are 197 | set in boldface, and each name is centered above the corresponding 198 | address. The lead author's name is to be listed first (left-most), and 199 | the co-authors' names (if different address) are set to follow. If 200 | there is only one co-author, list both author and co-author side by side. 201 | 202 | Please pay special attention to the instructions in section \ref{others} 203 | regarding figures, tables, acknowledgments, and references. 204 | 205 | \section{Headings: first level} 206 | \label{headings} 207 | 208 | First level headings are lower case (except for first word and proper nouns), 209 | flush left, bold and in point size 12. One line space before the first level 210 | heading and 1/2~line space after the first level heading. 211 | 212 | \subsection{Headings: second level} 213 | 214 | Second level headings are lower case (except for first word and proper nouns), 215 | flush left, bold and in point size 10. One line space before the second level 216 | heading and 1/2~line space after the second level heading. 217 | 218 | \subsubsection{Headings: third level} 219 | 220 | Third level headings are lower case (except for first word and proper nouns), 221 | flush left, bold and in point size 10. One line space before the third level 222 | heading and 1/2~line space after the third level heading. 223 | 224 | \section{Citations, figures, tables, references} 225 | \label{others} 226 | 227 | These instructions apply to everyone, regardless of the formatter being used. 228 | 229 | \subsection{Citations within the text} 230 | 231 | Citations within the text should be numbered consecutively. The corresponding 232 | number is to appear enclosed in square brackets, such as [1] or [2]-[5]. The 233 | corresponding references are to be listed in the same order at the end of the 234 | paper, in the \textbf{References} section. (Note: the standard 235 | \textsc{Bib\TeX} style \texttt{unsrt} produces this.) As to the format of the 236 | references themselves, any style is acceptable as long as it is used 237 | consistently. 238 | 239 | As submission is double blind, refer to your own published work in the 240 | third person. That is, use ``In the previous work of Jones et al.\ [4]'', 241 | not ``In our previous work [4]''. If you cite your other papers that 242 | are not widely available (e.g.\ a journal paper under review), use 243 | anonymous author names in the citation, e.g.\ an author of the 244 | form ``A.\ Anonymous''. 245 | 246 | 247 | \subsection{Footnotes} 248 | 249 | Indicate footnotes with a number\footnote{Sample of the first footnote} in the 250 | text. Place the footnotes at the bottom of the page on which they appear. 251 | Precede the footnote with a horizontal rule of 2~inches 252 | (12~picas).\footnote{Sample of the second footnote} 253 | 254 | \subsection{Figures} 255 | 256 | All artwork must be neat, clean, and legible. Lines should be dark 257 | enough for purposes of reproduction; art work should not be 258 | hand-drawn. The figure number and caption always appear after the 259 | figure. Place one line space before the figure caption, and one line 260 | space after the figure. The figure caption is lower case (except for 261 | first word and proper nouns); figures are numbered consecutively. 262 | 263 | Make sure the figure caption does not get separated from the figure. 264 | Leave sufficient space to avoid splitting the figure and figure caption. 265 | 266 | You may use color figures. 267 | However, it is best for the 268 | figure captions and the paper body to make sense if the paper is printed 269 | either in black/white or in color. 270 | \begin{figure}[h] 271 | \begin{center} 272 | %\framebox[4.0in]{$\;$} 273 | \fbox{\rule[-.5cm]{0cm}{4cm} \rule[-.5cm]{4cm}{0cm}} 274 | \end{center} 275 | \caption{Sample figure caption.} 276 | \end{figure} 277 | 278 | \subsection{Tables} 279 | 280 | All tables must be centered, neat, clean and legible. Do not use hand-drawn 281 | tables. The table number and title always appear before the table. See 282 | Table~\ref{sample-table}. 283 | 284 | Place one line space before the table title, one line space after the table 285 | title, and one line space after the table. The table title must be lower case 286 | (except for first word and proper nouns); tables are numbered consecutively. 287 | 288 | \begin{table}[t] 289 | \caption{Sample table title} 290 | \label{sample-table} 291 | \begin{center} 292 | \begin{tabular}{ll} 293 | \multicolumn{1}{c}{\bf PART} &\multicolumn{1}{c}{\bf DESCRIPTION} 294 | \\ \hline \\ 295 | Dendrite &Input terminal \\ 296 | Axon &Output terminal \\ 297 | Soma &Cell body (contains cell nucleus) \\ 298 | \end{tabular} 299 | \end{center} 300 | \end{table} 301 | 302 | \section{Final instructions} 303 | Do not change any aspects of the formatting parameters in the style files. 304 | In particular, do not modify the width or length of the rectangle the text 305 | should fit into, and do not change font sizes (except perhaps in the 306 | \textbf{References} section; see below). Please note that pages should be 307 | numbered. 308 | 309 | \section{Preparing PostScript or PDF files} 310 | 311 | Please prepare PostScript or PDF files with paper size ``US Letter'', and 312 | not, for example, ``A4''. The -t 313 | letter option on dvips will produce US Letter files. 314 | 315 | Fonts were the main cause of problems in the past years. Your PDF file must 316 | only contain Type 1 or Embedded TrueType fonts. Here are a few instructions 317 | to achieve this. 318 | 319 | \begin{itemize} 320 | 321 | \item You can check which fonts a PDF files uses. In Acrobat Reader, 322 | select the menu Files$>$Document Properties$>$Fonts and select Show All Fonts. You can 323 | also use the program \verb+pdffonts+ which comes with \verb+xpdf+ and is 324 | available out-of-the-box on most Linux machines. 325 | 326 | \item The IEEE has recommendations for generating PDF files whose fonts 327 | are also acceptable for NIPS. Please see 328 | \url{http://www.emfield.org/icuwb2010/downloads/IEEE-PDF-SpecV32.pdf} 329 | 330 | \item LaTeX users: 331 | 332 | \begin{itemize} 333 | 334 | \item Consider directly generating PDF files using \verb+pdflatex+ 335 | (especially if you are a MiKTeX user). 336 | PDF figures must be substituted for EPS figures, however. 337 | 338 | \item Otherwise, please generate your PostScript and PDF files with the following commands: 339 | \begin{verbatim} 340 | dvips mypaper.dvi -t letter -Ppdf -G0 -o mypaper.ps 341 | ps2pdf mypaper.ps mypaper.pdf 342 | \end{verbatim} 343 | 344 | Check that the PDF files only contains Type 1 fonts. 345 | %For the final version, please send us both the Postscript file and 346 | %the PDF file. 347 | 348 | \item xfig "patterned" shapes are implemented with 349 | bitmap fonts. Use "solid" shapes instead. 350 | \item The \verb+\bbold+ package almost always uses bitmap 351 | fonts. You can try the equivalent AMS Fonts with command 352 | \begin{verbatim} 353 | \usepackage[psamsfonts]{amssymb} 354 | \end{verbatim} 355 | or use the following workaround for reals, natural and complex: 356 | \begin{verbatim} 357 | \newcommand{\RR}{I\!\!R} %real numbers 358 | \newcommand{\Nat}{I\!\!N} %natural numbers 359 | \newcommand{\CC}{I\!\!\!\!C} %complex numbers 360 | \end{verbatim} 361 | 362 | \item Sometimes the problematic fonts are used in figures 363 | included in LaTeX files. The ghostscript program \verb+eps2eps+ is the simplest 364 | way to clean such figures. For black and white figures, slightly better 365 | results can be achieved with program \verb+potrace+. 366 | \end{itemize} 367 | \item MSWord and Windows users (via PDF file): 368 | \begin{itemize} 369 | \item Install the Microsoft Save as PDF Office 2007 Add-in from 370 | \url{http://www.microsoft.com/downloads/details.aspx?displaylang=en\&familyid=4d951911-3e7e-4ae6-b059-a2e79ed87041} 371 | \item Select ``Save or Publish to PDF'' from the Office or File menu 372 | \end{itemize} 373 | \item MSWord and Mac OS X users (via PDF file): 374 | \begin{itemize} 375 | \item From the print menu, click the PDF drop-down box, and select ``Save 376 | as PDF...'' 377 | \end{itemize} 378 | \item MSWord and Windows users (via PS file): 379 | \begin{itemize} 380 | \item To create a new printer 381 | on your computer, install the AdobePS printer driver and the Adobe Distiller PPD file from 382 | \url{http://www.adobe.com/support/downloads/detail.jsp?ftpID=204} {\it Note:} You must reboot your PC after installing the 383 | AdobePS driver for it to take effect. 384 | \item To produce the ps file, select ``Print'' from the MS app, choose 385 | the installed AdobePS printer, click on ``Properties'', click on ``Advanced.'' 386 | \item Set ``TrueType Font'' to be ``Download as Softfont'' 387 | \item Open the ``PostScript Options'' folder 388 | \item Select ``PostScript Output Option'' to be ``Optimize for Portability'' 389 | \item Select ``TrueType Font Download Option'' to be ``Outline'' 390 | \item Select ``Send PostScript Error Handler'' to be ``No'' 391 | \item Click ``OK'' three times, print your file. 392 | \item Now, use Adobe Acrobat Distiller or ps2pdf to create a PDF file from 393 | the PS file. In Acrobat, check the option ``Embed all fonts'' if 394 | applicable. 395 | \end{itemize} 396 | 397 | \end{itemize} 398 | If your file contains Type 3 fonts or non embedded TrueType fonts, we will 399 | ask you to fix it. 400 | 401 | \subsection{Margins in LaTeX} 402 | 403 | Most of the margin problems come from figures positioned by hand using 404 | \verb+\special+ or other commands. We suggest using the command 405 | \verb+\includegraphics+ 406 | from the graphicx package. Always specify the figure width as a multiple of 407 | the line width as in the example below using .eps graphics 408 | \begin{verbatim} 409 | \usepackage[dvips]{graphicx} ... 410 | \includegraphics[width=0.8\linewidth]{myfile.eps} 411 | \end{verbatim} 412 | or % Apr 2009 addition 413 | \begin{verbatim} 414 | \usepackage[pdftex]{graphicx} ... 415 | \includegraphics[width=0.8\linewidth]{myfile.pdf} 416 | \end{verbatim} 417 | for .pdf graphics. 418 | See section 4.4 in the graphics bundle documentation (\url{http://www.ctan.org/tex-archive/macros/latex/required/graphics/grfguide.ps}) 419 | 420 | A number of width problems arise when LaTeX cannot properly hyphenate a 421 | line. Please give LaTeX hyphenation hints using the \verb+\-+ command. 422 | 423 | 424 | \subsubsection*{Acknowledgments} 425 | 426 | Use unnumbered third level headings for the acknowledgments. All 427 | acknowledgments go at the end of the paper. Do not include 428 | acknowledgments in the anonymized submission, only in the 429 | final paper. 430 | 431 | \subsubsection*{References} 432 | 433 | References follow the acknowledgments. Use unnumbered third level heading for 434 | the references. Any choice of citation style is acceptable as long as you are 435 | consistent. It is permissible to reduce the font size to `small' (9-point) 436 | when listing the references. {\bf Remember that this year you can use 437 | a ninth page as long as it contains \emph{only} cited references.} 438 | 439 | \small{ 440 | [1] Alexander, J.A. \& Mozer, M.C. (1995) Template-based algorithms 441 | for connectionist rule extraction. In G. Tesauro, D. S. Touretzky 442 | and T.K. Leen (eds.), {\it Advances in Neural Information Processing 443 | Systems 7}, pp. 609-616. Cambridge, MA: MIT Press. 444 | 445 | [2] Bower, J.M. \& Beeman, D. (1995) {\it The Book of GENESIS: Exploring 446 | Realistic Neural Models with the GEneral NEural SImulation System.} 447 | New York: TELOS/Springer-Verlag. 448 | 449 | [3] Hasselmo, M.E., Schnell, E. \& Barkai, E. (1995) Dynamics of learning 450 | and recall at excitatory recurrent synapses and cholinergic modulation 451 | in rat hippocampal region CA3. {\it Journal of Neuroscience} 452 | {\bf 15}(7):5249-5262. 453 | } 454 | 455 | \end{document} 456 | -------------------------------------------------------------------------------- /Article-Journal/PNAS/PNASTMPL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Article-Journal/PNAS/PNASTMPL.pdf -------------------------------------------------------------------------------- /Article-Journal/PNAS/PNAStwoF.sty: -------------------------------------------------------------------------------- 1 | \def\pscurrentversion{April 8b, 2008} 2 | %\def\pscurrentversion{May 1, 2006} 3 | 4 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 5 | %% 6 | %% PostScript fonts for 7 | %% PNASOne, the one column journal style for 8 | %% Proceedings of the National Academy of Sciences 9 | %% 10 | %% Prepared by Amy Hendrickson, TeXnology Inc. 11 | %% 12 | %% For assistance, please contact the PNAS Editorial Office: 13 | %% 202-334-2679 14 | %% pnas@nas.edu 15 | %% 16 | %% Use: \documentclass{pnasone} 17 | %% (optional font encoding) \usepackage{t1enc} or \usepackage{OT1enc} 18 | %% \usepackage[]{graphicx} 19 | %% \usepackage[]{color} 20 | %% \usepackage{pnasonef} 21 | %% 22 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 23 | 24 | %% You may need to rename these fonts to match the 25 | %% names of the .tfm files on your system. If you look at 26 | %% the directory where the .tfm files are stored you should 27 | %% be able to make the appropriate substitution. 28 | 29 | 30 | %% Change these definitions, if necessary ====> 31 | 32 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 33 | %% Times-Roman 34 | 35 | %% Dvipsone Names: 36 | \def\timesroman{tir} 37 | \def\timesbold{tib} 38 | \def\timesitalic{tii} 39 | \def\timesbolditalic{tibi} 40 | 41 | 42 | %% Karl Berry Names: 43 | %\def\timesroman{ptmr8t} 44 | %\def\timesbold{ptmb8t} 45 | %\def\timesitalic{ptmri8t} 46 | %\def\timesbolditalic{ptmbi8t} 47 | 48 | %% BlueSky or other TeX Systems, write in appropriate font name: 49 | %\def\timesroman{} 50 | %\def\timesbold{} 51 | %\def\timesitalic{} 52 | %\def\timesbolditalic{} 53 | 54 | 55 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 56 | %% Helvetica 57 | %------------------ 58 | %% Dvipsone 59 | \def\helvetica{hv} 60 | \def\helveticaoblique{hvo} 61 | \def\helveticaboldoblique{hvbo} 62 | \def\helveticabold{hvb} 63 | 64 | 65 | %% Karl Berry Names: 66 | %\def\helvetica{phvr} 67 | %\def\helveticaoblique{phvro} 68 | %\def\helveticaboldoblique{phvbo} 69 | %\def\helveticabold{phvb} 70 | 71 | %% BlueSky or other TeX Systems, write in appropriate font name: 72 | %\def\helvetica{} 73 | %\def\helveticabold{} 74 | %\def\helveticaoblique{} 75 | 76 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 77 | %% Frutiger 78 | %% Use Helvetica (No need to change these font declarations, 79 | %% since Helvetica has been defined above.) 80 | 81 | 82 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 83 | %% Frutiger 84 | %% Use Helvetica (No need to change these font declarations, 85 | %% since Helvetica has been defined above.) 86 | 87 | \def\frutiger{\helvetica} 88 | \def\frutigeroblique{\helveticaoblique} 89 | \def\frutigerbold{\helveticabold} 90 | \def\frutigerboldcondensed{\helveticabold} 91 | \def\frutigermed{\helvetica} 92 | \def\frutigerblackCond{\helveticabold} 93 | 94 | %% 95 | \def\dutchbold{\timesbold} 96 | \def\dutchmed{\timesroman} 97 | 98 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 99 | %% Courier 100 | %% Computer Modern name 101 | \def\courier{cmtt10} 102 | 103 | % Dvipsone name: 104 | %\def\courier{com} 105 | 106 | % Berry name: 107 | %\def\courier{pcrr8t} 108 | 109 | %% <==== End of changes needed. Please do not make changes below this point. 110 | %% !!!!!!!!! 111 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 112 | 113 | %% default definitions, since these fonts 114 | %% will not be used: 115 | \let\xcourier\courier 116 | \def\courieroblique{pcrro8r} 117 | \def\courierbold{pcrb8r} 118 | \def\courierboldoblique{pcrbo8r} 119 | 120 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 121 | % switch used in documentation: 122 | \def\psfonts{true} 123 | 124 | \global\let\sfdefault\helvetica 125 | \global\let\rmdefault\timesroman 126 | \global\let\ttdefault\courier 127 | 128 | \typeout{^^J^^J 129 | -------------------------------------------^^J 130 | PostScript Fonts for PNAS One Column Journal Style^^J 131 | \pscurrentversion^^J^^J 132 | IMPORTANT: If you use font encoding, as 133 | in \string\usepackage{T1enc},^^J please use it BEFORE 134 | \string\usepackage{pnasfont}, ie:^^J 135 | \string\documentclass{pnasone}^^J 136 | \string\usepackage{T1enc}^^J 137 | \string\usepackage[driver name]{color}^^J^^J 138 | \string\usepackage{pnas}^^J 139 | -------------------------------------------^^J 140 | ^^J 141 | } 142 | 143 | %% Times-Roman 144 | \xdef\timesroman{\timesroman\space} 145 | \xdef\timesbold{\timesbold\space} 146 | \xdef\timesitalic{\timesitalic\space} 147 | \xdef\timesbolditalic{\timesbolditalic\space} 148 | 149 | %% Helvetica 150 | \xdef\helvetica{\helvetica\space} 151 | \xdef\helveticabold{\helveticabold\space} 152 | \xdef\helveticaoblique{\helveticaoblique\space} 153 | \xdef\helveticaboldoblique{\helveticaboldoblique\space} 154 | 155 | %% Frutiger 156 | \xdef\frutigerbold{\frutigerbold\space} 157 | \xdef\frutiger{\frutiger\space} 158 | \xdef\frutigeroblique{\frutigeroblique\space} 159 | \xdef\frutigerboldcondensed{\frutigerboldcondensed\space} 160 | 161 | %% Courier 162 | \xdef\courier{\courier\space} 163 | 164 | %% Special Use Fonts ==>> 165 | \font\footnotefont\frutigermed at 6pt 166 | 167 | \font\dropcapfont=\frutigerbold at 24.5pt 168 | \font\sideboxfont= \helvetica at 6pt 169 | 170 | %% Running feet 171 | \font\footlinefont=\frutiger at7pt 172 | \font\footlineit=\helveticaoblique at7pt 173 | \font\foliofont=\frutigerbold at 7pt 174 | 175 | \font\titlefont=\frutigerboldcondensed at 22pt % 24pt baseline 176 | \font\authorfont=\frutigerbold at 9pt % 11 pt baseline 177 | \font\affilfont=\frutiger at 7pt % 8pt baseline 178 | \font\keywordfont=\frutiger at 7pt % 8pt baseline 179 | 180 | \font\copyrightfont=\frutiger at 6pt 181 | \font\copyrighttextfont=\frutiger at 6pt 182 | 183 | %% Abstract fonts 184 | \font\xabstractfont=\frutigerbold at 8pt 185 | \def\abstractfont{\sf\xabstractfont\dospecialaccents} 186 | \font\abstractit=\helveticaboldoblique at 8pt 187 | 188 | %% Bibliography 189 | \font\xbibfont=\frutigerbold at 6pt 190 | \def\bibfont{\sf\xbibfont\dospecialaccents} 191 | \font\bibitfont\helveticaboldoblique at 6pt 192 | \font\bibbffont\helveticabold at 6pt 193 | 194 | %% Materials and Methods 195 | \font\materialfont=\frutiger at 7pt 196 | \font\materialbffont=\helveticabold at 7pt 197 | \font\materialitfont=\helveticaoblique at 7pt 198 | 199 | %% Section fonts 200 | \font\sectionfont=\frutigerblackCond at 9pt 201 | \font\subsectionfont=\frutigerblackCond at 8pt 202 | 203 | %% Theorem fonts 204 | \font\theoremfont=\frutigerbold at 8pt 205 | 206 | %% Caption 207 | \font\fignumfont=\frutigerbold at 7pt 208 | \font\xfigtextfont=\frutiger at 7pt 209 | \def\figtextfont{\small\dospecialaccents\xfigtextfont} 210 | 211 | %% Table font 212 | \font\tabletextfont=\frutiger at 7.5pt 213 | \font\tablenotefont=\frutiger at 6pt 214 | \font\tablenotebffont=\frutigerbold at 6pt 215 | \font\tablenoteitfont=\frutigeroblique at 6pt 216 | \font\tabtextfont\frutigerbold at 8pt 217 | \font\tabnumfont\frutigerbold at 8pt 218 | 219 | \font\footlinefont=\frutiger at7pt 220 | 221 | %% ok 222 | %%% equivalent of bringing in .fd files 223 | %Filename: .fd 224 | \DeclareFontFamily{\encodingdefault}{\rmdefault}{} 225 | \DeclareFontShape{\encodingdefault}{\rmdefault}{b}{n}{ 226 | <-> \timesbold 227 | }{} 228 | 229 | \DeclareFontShape{\encodingdefault}{\rmdefault}{b}{sc}{ 230 | <-> cmcsc10 231 | }{} 232 | 233 | \DeclareFontShape{\encodingdefault}{\rmdefault}{b}{sl}{ 234 | <-> \timesbolditalic 235 | }{} 236 | 237 | \DeclareFontShape{\encodingdefault}{\rmdefault}{b}{it}{ 238 | <-> \timesbolditalic 239 | }{} 240 | 241 | \DeclareFontShape{\encodingdefault}{\rmdefault}{m}{n}{ 242 | <-> \timesroman 243 | }{} 244 | 245 | \DeclareFontShape{\encodingdefault}{\rmdefault}{m}{sc}{ 246 | <-> cmcsc10 247 | }{} 248 | 249 | \DeclareFontShape{\encodingdefault}{\rmdefault}{m}{sl}{ 250 | <-> \timesitalic 251 | }{} 252 | 253 | \DeclareFontShape{\encodingdefault}{\rmdefault}{m}{it}{ 254 | <-> \timesitalic 255 | }{} 256 | 257 | \DeclareFontShape{\encodingdefault} 258 | {\rmdefault}{bx}{n}{<->ssub * \rmdefault/b/n}{} 259 | 260 | \DeclareFontShape{\encodingdefault} 261 | {\rmdefault}{bx}{sc}{<->ssub * \rmdefault/b/sc}{} 262 | 263 | \DeclareFontShape{\encodingdefault} 264 | {\rmdefault}{bx}{sl}{<->ssub * \rmdefault/b/sl}{} 265 | 266 | \DeclareFontShape{\encodingdefault} 267 | {\rmdefault}{bx}{it}{<->ssub * \rmdefault/b/it}{} 268 | 269 | \DeclareFontShape{\encodingdefault} 270 | {\rmdefault}{l}{n}{<->ssub * \rmdefault/m/n}{} 271 | 272 | \DeclareFontShape{\encodingdefault} 273 | {\rmdefault}{l}{sc}{<->ssub * \rmdefault/m/sc}{} 274 | 275 | \DeclareFontShape{\encodingdefault} 276 | {\rmdefault}{l}{sl}{<->ssub * \rmdefault/m/sl}{} 277 | 278 | \DeclareFontShape{\encodingdefault} 279 | {\rmdefault}{l}{it}{<->ssub * \rmdefault/m/it}{} 280 | 281 | 282 | %% ok 283 | %\ProvidesFile{.fd} 284 | % [1996/02/19 v2.3e Standard LaTeX font definitions] 285 | 286 | \DeclareFontFamily{\encodingdefault}{\ttdefault}{\hyphenchar \font\m@ne} 287 | 288 | \DeclareFontShape{\encodingdefault}{\ttdefault}{b}{n}{ 289 | <-> \courierbold 290 | }{} 291 | 292 | \DeclareFontShape{\encodingdefault}{\ttdefault}{b}{sc}{ 293 | <-> cmcsc10 294 | }{} 295 | 296 | \DeclareFontShape{\encodingdefault}{\ttdefault}{b}{sl}{ 297 | <-> \courierboldoblique 298 | }{} 299 | 300 | \DeclareFontShape{\encodingdefault}{\ttdefault}{b}{it}{ 301 | <-> \courierboldoblique 302 | }{} 303 | 304 | 305 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{n} 306 | {<-> \courier 307 | }{} 308 | 309 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{n} 310 | {<-> \courier 311 | }{} 312 | %%%%%% make sure subst shapes are available 313 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{it} 314 | {<-> \courieroblique 315 | }{} 316 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{sl} 317 | {<-> \courieroblique 318 | }{} 319 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{sc} 320 | {<-> \courier 321 | }{} 322 | \DeclareFontShape{\encodingdefault}{\ttdefault}{m}{ui} 323 | {<->sub * \xcourier/m/it}{} 324 | \DeclareFontShape{\encodingdefault}{\ttdefault}{bx}{n} 325 | {<->sub * \xcourier/m/n}{} 326 | \DeclareFontShape{\encodingdefault}{\ttdefault}{bx}{it} 327 | {<->sub * \xcourier/m/it}{} 328 | \DeclareFontShape{\encodingdefault}{\ttdefault}{bx}{ui} 329 | {<->sub * \xcourier/m/it}{} 330 | %% 331 | %% End of file `.fd'. 332 | 333 | %Filename: .fd 334 | %\ProvidesFile{\encodingdefaulthv.fd} 335 | % [1996/02/19 Fontinst v1.504 font definitions for \encodingdefault/hv.] 336 | 337 | \DeclareFontFamily{\encodingdefault}{hv}{} 338 | 339 | \DeclareFontShape{\encodingdefault}{hv}{b}{n}{ 340 | <-> \helveticabold 341 | }{} 342 | 343 | \DeclareFontShape{\encodingdefault}{hv}{b}{sc}{ 344 | <-> cmcsc10 345 | }{} 346 | 347 | \DeclareFontShape{\encodingdefault}{hv}{m}{n}{ 348 | <-> \helvetica 349 | }{} 350 | 351 | \DeclareFontShape{\encodingdefault}{hv}{m}{sc}{ 352 | <-> cmcsc10 353 | }{} 354 | 355 | \DeclareFontShape{\encodingdefault}{hv}{m}{sl}{ 356 | <-> \helveticaoblique 357 | }{} 358 | 359 | \DeclareFontShape{\encodingdefault}{hv}{m}{it}{ 360 | <-> \helveticaoblique 361 | }{} 362 | 363 | \DeclareFontShape{\encodingdefault}{hv}{bx}{n}{<->ssub * hv/b/n}{} 364 | \DeclareFontShape{\encodingdefault}{hv}{bx}{sc}{<->ssub * hv/b/sc}{} 365 | \DeclareFontShape{\encodingdefault}{hv}{bx}{sl}{<->ssub * hv/b/sl}{} 366 | \DeclareFontShape{\encodingdefault}{hv}{bx}{it}{<->ssub * hv/b/it}{} 367 | \DeclareFontShape{\encodingdefault}{hv}{l}{n}{<->ssub * hv/m/n}{} 368 | \DeclareFontShape{\encodingdefault}{hv}{l}{sc}{<->ssub * hv/m/sc}{} 369 | \DeclareFontShape{\encodingdefault}{hv}{l}{sl}{<->ssub * hv/m/sl}{} 370 | \DeclareFontShape{\encodingdefault}{hv}{l}{it}{<->ssub * hv/m/it}{} 371 | 372 | 373 | \rm 374 | 375 | \let\dospecialaccents\relax 376 | 377 | 378 | 379 | \endinput 380 | -------------------------------------------------------------------------------- /Article-Journal/PNAS/pnastmpl.tex: -------------------------------------------------------------------------------- 1 | %% PNAStmpl.tex 2 | %% Template file to use for PNAS articles prepared in LaTeX 3 | %% Version: Apr 14, 2008 4 | 5 | 6 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 7 | %% BASIC CLASS FILE 8 | %% PNAStwo for two column articles is called by default. 9 | %% Uncomment PNASone for single column articles. One column class 10 | %% and style files are available upon request from pnas@nas.edu. 11 | %% (uncomment means get rid of the '%' in front of the command) 12 | 13 | %\documentclass{pnasone} 14 | \documentclass{pnastwo} 15 | 16 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 17 | %% Changing position of text on physical page: 18 | %% Since not all printers position 19 | %% the printed page in the same place on the physical page, 20 | %% you can change the position yourself here, if you need to: 21 | 22 | % \advance\voffset -.5in % Minus dimension will raise the printed page on the 23 | % physical page; positive dimension will lower it. 24 | 25 | %% You may set the dimension to the size that you need. 26 | 27 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 28 | %% OPTIONAL GRAPHICS STYLE FILE 29 | 30 | %% Requires graphics style file (graphicx.sty), used for inserting 31 | %% .eps files into LaTeX articles. 32 | %% Note that inclusion of .eps files is for your reference only; 33 | %% when submitting to PNAS please submit figures separately. 34 | 35 | %% Type into the square brackets the name of the driver program 36 | %% that you are using. If you don't know, try dvips, which is the 37 | %% most common PC driver, or textures for the Mac. These are the options: 38 | 39 | % [dvips], [xdvi], [dvipdf], [dvipdfm], [dvipdfmx], [pdftex], [dvipsone], 40 | % [dviwindo], [emtex], [dviwin], [pctexps], [pctexwin], [pctexhp], [pctex32], 41 | % [truetex], [tcidvi], [vtex], [oztex], [textures], [xetex] 42 | 43 | \usepackage[dvips]{graphicx} 44 | 45 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 46 | %% OPTIONAL POSTSCRIPT FONT FILES 47 | 48 | %% PostScript font files: You may need to edit the PNASoneF.sty 49 | %% or PNAStwoF.sty file to make the font names match those on your system. 50 | %% Alternatively, you can leave the font style file commands commented out 51 | %% and typeset your article using the default Computer Modern 52 | %% fonts (recommended). If accepted, your article will be typeset 53 | %% at PNAS using PostScript fonts. 54 | 55 | 56 | % Choose PNASoneF for one column; PNAStwoF for two column: 57 | %\usepackage{PNASoneF} 58 | %\usepackage{PNAStwoF} 59 | 60 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 61 | %% ADDITIONAL OPTIONAL STYLE FILES 62 | 63 | %% The AMS math files are commonly used to gain access to useful features 64 | %% like extended math fonts and math commands. 65 | 66 | \usepackage{amssymb,amsfonts,amsmath} 67 | 68 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 69 | %% OPTIONAL MACRO FILES 70 | %% Insert self-defined macros here. 71 | %% \newcommand definitions are recommended; \def definitions are supported 72 | 73 | %\newcommand{\mfrac}[2]{\frac{\displaystyle #1}{\displaystyle #2}} 74 | %\def\s{\sigma} 75 | 76 | 77 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 78 | %% Don't type in anything in the following section: 79 | %%%%%%%%%%%% 80 | %% For PNAS Only: 81 | \contributor{Submitted to Proceedings 82 | of the National Academy of Sciences of the United States of America} 83 | \url{www.pnas.org/cgi/doi/10.1073/pnas.0709640104} 84 | \copyrightyear{2008} 85 | \issuedate{Issue Date} 86 | \volume{Volume} 87 | \issuenumber{Issue Number} 88 | %%%%%%%%%%%% 89 | 90 | \begin{document} 91 | 92 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 93 | 94 | 95 | %% For titles, only capitalize the first letter 96 | %% \title{Almost sharp fronts for the surface quasi-geostrophic equation} 97 | 98 | \title{Insert title here} 99 | 100 | 101 | %% Enter authors via the \author command. 102 | %% Use \affil to define affiliations. 103 | %% (Leave no spaces between author name and \affil command) 104 | 105 | %% Note that the \thanks{} command has been disabled in favor of 106 | %% a generic, reserved space for PNAS publication footnotes. 107 | 108 | %% \author{ 109 | %% \affil{}{}} One number for each institution. 110 | %% The same number should be used for authors that 111 | %% are affiliated with the same institution, after the first time 112 | %% only the number is needed, ie, \affil{number}{text}, \affil{number}{} 113 | %% Then, before last author ... 114 | %% \and 115 | %% \author{ 116 | %% \affil{}{}} 117 | 118 | %% For example, assuming Garcia and Sonnery are both affiliated with 119 | %% Universidad de Murcia: 120 | %% \author{Roberta Graff\affil{1}{University of Cambridge, Cambridge, 121 | %% United Kingdom}, 122 | %% Javier de Ruiz Garcia\affil{2}{Universidad de Murcia, Bioquimica y Biologia 123 | %% Molecular, Murcia, Spain}, \and Franklin Sonnery\affil{2}{}} 124 | 125 | \author{ 126 | Author One\affil{1}{University One} 127 | Author Two\affil{2}{University Two} 128 | \and 129 | Author Three\affil{2}{} 130 | } 131 | 132 | \contributor{Submitted to Proceedings of the National Academy of Sciences 133 | of the United States of America} 134 | 135 | %% The \maketitle command is necessary to build the title page. 136 | \maketitle 137 | 138 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 139 | \begin{article} 140 | 141 | \begin{abstract} 142 | -- enter abstract text here -- 143 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 144 | \end{abstract} 145 | 146 | 147 | %% When adding keywords, separate each term with a straight line: | 148 | \keywords{term | term | term} 149 | 150 | %% Optional for entering abbreviations, separate the abbreviation from 151 | %% its definition with a comma, separate each pair with a semicolon: 152 | %% for example: 153 | %% \abbreviations{SAM, self-assembled monolayer; OTS, 154 | %% octadecyltrichlorosilane} 155 | 156 | % \abbreviations{} 157 | 158 | %% The first letter of the article should be drop cap: \dropcap{} 159 | %\dropcap{I}n this article we study the evolution of ''almost-sharp'' fronts 160 | 161 | %% Enter the text of your article beginning here and ending before 162 | %% \begin{acknowledgements} 163 | %% Section head commands for your reference: 164 | %% \section{} 165 | %% \subsection{} 166 | %% \subsubsection{} 167 | 168 | -- text of paper here -- 169 | 170 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 171 | 172 | In Ref.~\cite{ref1}... 173 | In Refs.~\cite{ref1,ref2}... 174 | 175 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 176 | 177 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 178 | 179 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 180 | 181 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 182 | 183 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 184 | 185 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 186 | 187 | %% == end of paper: 188 | 189 | %% Optional Materials and Methods Section 190 | %% The Materials and Methods section header will be added automatically. 191 | 192 | %% Enter any subheads and the Materials and Methods text below. 193 | %\begin{materials} 194 | % Materials text 195 | %\end{materials} 196 | 197 | 198 | %% Optional Appendix or Appendices 199 | %% \appendix Appendix text... 200 | %% or, for appendix with title, use square brackets: 201 | %% \appendix[Appendix Title] 202 | 203 | \begin{acknowledgments} 204 | -- text of acknowledgments here, including grant info -- 205 | 206 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 207 | \end{acknowledgments} 208 | 209 | %% PNAS does not support submission of supporting .tex files such as BibTeX. 210 | %% Instead all references must be included in the article .tex document. 211 | %% If you currently use BibTeX, your bibliography is formed because the 212 | %% command \verb+\bibliography{}+ brings the .bbl file into your 213 | %% .tex document. To conform to PNAS requirements, copy the reference listings 214 | %% from your .bbl file and add them to the article .tex file, using the 215 | %% bibliography environment described above. 216 | 217 | %% Contact pnas@nas.edu if you need assistance with your 218 | %% bibliography. 219 | 220 | % Sample bibliography item in PNAS format: 221 | %% \bibitem{in-text reference} comma-separated author names up to 5, 222 | %% for more than 5 authors use first author last name et al. (year published) 223 | %% article title {\it Journal Name} volume #: start page-end page. 224 | %% ie, 225 | % \bibitem{Neuhaus} Neuhaus J-M, Sitcher L, Meins F, Jr, Boller T (1991) 226 | % A short C-terminal sequence is necessary and sufficient for the 227 | % targeting of chitinases to the plant vacuole. 228 | % {\it Proc Natl Acad Sci USA} 88:10362-10366. 229 | 230 | 231 | %% Enter the largest bibliography number in the facing curly brackets 232 | %% following \begin{thebibliography} 233 | 234 | \begin{thebibliography}{99} 235 | \bibitem{ref1} J.~Doe, Article name, \textit{Phys. Rev. Lett.} 236 | 237 | \bibitem{ref2} J.~Doe, J. Smith, Other article name, \textit{Phys. Rev. Lett.} 238 | \end{thebibliography} 239 | 240 | \end{article} 241 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 242 | 243 | %% Adding Figure and Table References 244 | %% Be sure to add figures and tables after \end{article} 245 | %% and before \end{document} 246 | 247 | %% For figures, put the caption below the illustration. 248 | %% 249 | %% \begin{figure} 250 | %% \caption{Almost Sharp Front}\label{afoto} 251 | %% \end{figure} 252 | 253 | \begin{figure} 254 | \centerline{\includegraphics[width=1in]{lion.eps}} 255 | \caption{Sample picture caption}\label{fig1} 256 | \end{figure} 257 | 258 | %% For Tables, put caption above table 259 | %% 260 | %% Table caption should start with a capital letter, continue with lower case 261 | %% and not have a period at the end 262 | %% Using @{\vrule height ?? depth ?? width0pt} in the tabular preamble will 263 | %% keep that much space between every line in the table. 264 | 265 | %% \begin{table} 266 | %% \caption{Repeat length of longer allele by age of onset class} 267 | %% \begin{tabular}{@{\vrule height 10.5pt depth4pt width0pt}lrcccc} 268 | %% table text 269 | %% \end{tabular} 270 | %% \end{table} 271 | 272 | %% For two column figures and tables, use the following: 273 | 274 | %% \begin{figure*} 275 | %% \caption{Almost Sharp Front}\label{afoto} 276 | %% \end{figure*} 277 | 278 | %% \begin{table*} 279 | %% \caption{Repeat length of longer allele by age of onset class} 280 | %% \begin{tabular}{ccc} 281 | %% table text 282 | %% \end{tabular} 283 | %% \end{table*} 284 | 285 | \begin{table} 286 | \caption{This is a table with scientific results.} 287 | \begin{tabular}{@{\vrule height 10.5pt depth4pt width0pt}ccccc} 288 | \hline 289 | 1 & 2 & 3 & 4 & 5\\ 290 | \hline 291 | aaa & bbb & ccc & ddd & eee\\ 292 | aaaa & bbbb & cccc & dddd & eeee\\ 293 | aaaaa & bbbbb & ccccc & ddddd & eeeee\\ 294 | aaaaaa & bbbbbb & cccccc & dddddd & eeeeee\\ 295 | 1.000 & 2.000 & 3.000 & 4.000 & 5.000\\ 296 | \hline 297 | \end{tabular} 298 | \end{table} 299 | 300 | \end{document} 301 | 302 | -------------------------------------------------------------------------------- /CV/Friggeri/bibliography.bib: -------------------------------------------------------------------------------- 1 | %% This document is a bibtex export of HAL publication 2 | %% Date of the export : 02/05/2012 3 | %% Criteria : Author : 'friggeri' 4 | 5 | %% 6 | %% inria-00490195, version 2 7 | %% http://hal.inria.fr/inria-00490195 8 | %% 9 | 10 | @article{friggeri:2011:inria-00490195:2, 11 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric and Fraboulet, Antoine and Mentr{\'e}, France and Lucet, Jean-Christophe}, 12 | TITLE = {{Reconstructing Social Interactions Using an unreliable Wireless Sensor Network}}, 13 | JOURNAL = {{Computer Communications}}, 14 | PUBLISHER = {Elsevier}, 15 | VOLUME = {34}, 16 | NUMBER = {5}, 17 | PAGES = {609--618}, 18 | YEAR = {2011}, 19 | MONTH = Apr, 20 | KEYWORDS = {complex networks; interaction networks; wireless sensor networks; medical applications}, 21 | DOI = {10.1016/j.comcom.2010.06.005}, 22 | URL = {http://hal.inria.fr/inria-00490195} 23 | } 24 | %% inria-00597448, version 1 25 | %% http://hal.inria.fr/inria-00597448 26 | %% 27 | 28 | @article{friggeri:2011:inria-00597448:1, 29 | AUTHOR = {Friggeri, Adrien and Cointet, Jean-Philippe and Latapy, Matthieu, Matthieu}, 30 | TITLE = {{A Real-World Spreading Experiment in the Blogosphere}}, 31 | JOURNAL = {{Complex Systems}}, 32 | PUBLISHER = {Complex Systems Publications, Inc.}, 33 | VOLUME = {19}, 34 | NUMBER = {3}, 35 | YEAR = {2011}, 36 | URL = {http://hal.inria.fr/inria-00597448} 37 | } 38 | %% inria-00475921, version 1 39 | %% http://hal.inria.fr/inria-00475921 40 | %% 41 | 42 | @inproceedings{friggeri:2010:inria-00475921:1, 43 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume}, 44 | TITLE = {{Biais dans les mesures obtenues par un r{\'e}seau de capteurs sans fil}}, 45 | BOOKTITLE = {{12{\`e}mes Rencontres Francophones sur les Aspects Algorithmiques de T{\'e}l{\'e}communications (AlgoTel)}}, 46 | YEAR = {2010}, 47 | EDITOR = {Maria Gradinariu Potop-Butucaru and Herv{\'e} Rivano}, 48 | KEYWORDS = {france}, 49 | ADDRESS = {Belle Dune, France}, 50 | MONTH = Jun, 51 | URL = {http://hal.inria.fr/inria-00475921} 52 | } 53 | %% inria-00587942, version 1 54 | %% http://hal.inria.fr/inria-00587942 55 | %% 56 | 57 | @inproceedings{friggeri:2011:inria-00587942:1, 58 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 59 | TITLE = {{Communaut{\'e}s : Arr{\^e}tons de ne compter que les ar{\^e}tes}}, 60 | BOOKTITLE = {{13es Rencontres Francophones sur les Aspects Algorithmiques de T{\'e}l{\'e}communications (AlgoTel)}}, 61 | YEAR = {2011}, 62 | EDITOR = {Ducourthial, Bertrand and Felber, Pascal}, 63 | MONTH = Jun, 64 | KEYWORDS = {france}, 65 | ADDRESS = {Cap Est{\'e}rel, France}, 66 | URL = {http://hal.inria.fr/inria-00587942} 67 | } 68 | %% inria-00597446, version 1 69 | %% http://hal.inria.fr/inria-00597446 70 | %% 71 | 72 | @inproceedings{friggeri:2011:inria-00597446:1, 73 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 74 | TITLE = {{Fellows: Crowd-sourcing the evaluation of an overlapping community model based on the cohesion measure}}, 75 | BOOKTITLE = {{Interdisciplinary Workshop on Information and Decision in Social Networks}}, 76 | YEAR = {2011}, 77 | MONTH = May, 78 | NOTE = {31 accept{\'e}/140 soumis +250 participants}, 79 | ADDRESS = {Cambridge, {\'E}tats-Unis}, 80 | URL = {http://hal.inria.fr/inria-00597446} 81 | } 82 | %% inria-00597447, version 1 83 | %% http://hal.inria.fr/inria-00597447 84 | %% 85 | 86 | @inproceedings{friggeri:2011:inria-00597447:1, 87 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 88 | TITLE = {{Egomunities, Exploring Socially Cohesive Person-based Communities}}, 89 | BOOKTITLE = {{NetSci 2011 The International School and Conference on Network Science}}, 90 | YEAR = {2011}, 91 | MONTH = Jun, 92 | ADDRESS = {Budapest, Hongrie}, 93 | URL = {http://hal.inria.fr/inria-00597447} 94 | } 95 | %% inria-00619092, version 1 96 | %% http://hal.inria.fr/inria-00619092 97 | %% 98 | 99 | @inproceedings{friggeri:2011:inria-00619092:1, 100 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 101 | TITLE = {{Triangles to Capture Social Cohesion}}, 102 | BOOKTITLE = {{Third IEEE International Conference on Social Computing}}, 103 | YEAR = {2011}, 104 | MONTH = Sep, 105 | ADDRESS = {Cambridge, {\'E}tats-Unis}, 106 | URL = {http://hal.inria.fr/inria-00619092} 107 | } 108 | %% inria-00626064, version 1 109 | %% http://hal.inria.fr/inria-00626064 110 | %% 111 | 112 | @inproceedings{friggeri:2011:inria-00626064:1, 113 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 114 | TITLE = {{Fellows: Crowd-sourcing the evaluation of an overlapping community model based on the cohesion measure}}, 115 | BOOKTITLE = {{Complex Dynamics of Human Interactions}}, 116 | YEAR = {2011}, 117 | MONTH = Sep, 118 | ADDRESS = {Vienna, Autriche}, 119 | URL = {http://hal.inria.fr/inria-00626064} 120 | } 121 | %% inria-00507447, version 1 122 | %% http://hal.inria.fr/inria-00507447 123 | %% 124 | 125 | @inproceedings{lucet:2010:inria-00507447:1, 126 | AUTHOR = {Lucet, Jean-Christophe and Chelius, Guillaume and Laouenan, C{\'e}dric and Friggeri, Adrien and Veziris, N. and Lepelletier, D. and Abiteboul, D. and Bouvet, Elisabeth and Fleury, Eric and Mentr{\'e}, France}, 127 | TITLE = {{Electronic Sensors for Measuring Interactions between Healthcare Workers (HCWs) and Patients (Pts): the Case of Tuberculosis (TB)}}, 128 | YEAR = {2010}, 129 | MONTH = Sep, 130 | BOOKTITLE = {{2010 Interscience Conference on Antimicrobial Agents and Chemotherapy}}, 131 | ORGANIZATION = {American Society for Microbiology}, 132 | ADDRESS = {Boston, {\'E}tats-Unis}, 133 | URL = {http://hal.inria.fr/inria-00507447} 134 | } 135 | %% inria-00630363, version 1 136 | %% http://hal.inria.fr/inria-00630363 137 | %% 138 | 139 | @inproceedings{friggeri:2011:inria-00630363:1, 140 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 141 | TITLE = {{Trouver des communaut{\'e}s socialement coh{\'e}sives est NP-dur}}, 142 | YEAR = {2011}, 143 | MONTH = Oct, 144 | KEYWORDS={france}, 145 | BOOKTITLE = {{13emes journ{\'e}es Graphes et Algorithmes}}, 146 | ADDRESS = {Lyon, France}, 147 | URL = {http://hal.inria.fr/inria-00630363} 148 | } 149 | %% inria-00605673, version 1 150 | %% http://hal.inria.fr/inria-00605673 151 | %% 152 | 153 | @misc{friggeri:2011:inria-00605673:1, 154 | AUTHOR = {Friggeri, Adrien and Fleury, Eric}, 155 | TITLE = {{Des triangles pour mesurer la coh{\'e}sion sociale : Fellows, une exp{\'e}rimentation sur Facebook}}, 156 | YEAR = {2011}, 157 | MONTH = Jun, 158 | KEYWORDS = {france}, 159 | NOTE = {S{\'e}minaire w2s @ La Cantine}, 160 | URL = {http://hal.inria.fr/inria-00605673} 161 | } 162 | %% hal-00692548, version 1 163 | %% http://hal.inria.fr/hal-00692548 164 | %% 165 | 166 | @techreport{friggeri:2012:hal-00692548:1, 167 | AUTHOR = {Friggeri, Adrien and Fleury, Eric}, 168 | TITLE = {{Finding cohesive communities with C³}}, 169 | TYPE = {Rapport de recherche}, 170 | YEAR = {2012}, 171 | MONTH = Apr, 172 | INSTITUTION = {INRIA}, 173 | NUMBER = {RR-7947}, 174 | URL = {http://hal.inria.fr/hal-00692548} 175 | } 176 | %% inria-00565336, version 2 177 | %% http://hal.inria.fr/inria-00565336 178 | %% 179 | 180 | @techreport{friggeri:2011:inria-00565336:2, 181 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 182 | TITLE = {{Egomunities, Exploring Socially Cohesive Person-based Communities}}, 183 | TYPE = {Rapport de recherche}, 184 | YEAR = {2011}, 185 | MONTH = Feb, 186 | KEYWORDS = {social networks, complex networks, real-world graphs, community detection, overlapping communities, data mining, modelisation}, 187 | INSTITUTION = {INRIA}, 188 | NUMBER = {RR-7535}, 189 | URL = {http://hal.inria.fr/inria-00565336} 190 | } 191 | %% inria-00608889, version 1 192 | %% http://hal.inria.fr/inria-00608889 193 | %% 194 | 195 | @techreport{friggeri:2011:inria-00608889:1, 196 | AUTHOR = {Friggeri, Adrien and Chelius, Guillaume and Fleury, Eric}, 197 | TITLE = {{Triangles to Capture Social Cohesion}}, 198 | TYPE = {Rapport de recherche}, 199 | YEAR = {2011}, 200 | MONTH = Jul, 201 | INSTITUTION = {INRIA}, 202 | NUMBER = {RR-7686}, 203 | URL = {http://hal.inria.fr/inria-00608889} 204 | } 205 | %% inria-00621065, version 2 206 | %% http://hal.inria.fr/inria-00621065 207 | %% 208 | 209 | @techreport{friggeri:2011:inria-00621065:2, 210 | AUTHOR = {Friggeri, Adrien and Fleury, Eric}, 211 | TITLE = {{Maximizing the Cohesion is NP-hard}}, 212 | TYPE = {Rapport de recherche}, 213 | YEAR = {2011}, 214 | MONTH = Sep, 215 | INSTITUTION = {INRIA}, 216 | NUMBER = {RR-7734}, 217 | URL = {http://hal.inria.fr/inria-00621065} 218 | } 219 | 220 | @article{Lucet:2012gl, 221 | author = {Lucet, Jean-Christophe and Laouenan, Cédric and Chelius, Guillaume and Veziris, Nicolas and Lepelletier, Didier and Friggeri, Adrien and Abiteboul, Dominique and Bouvet, Elisabeth and Mentré, France and Fleury, Eric}, 222 | title = {{Electronic Sensors for Assessing Interactions between Healthcare Workers and Patients under Airborne Precautions}}, 223 | journal = {PLoS ONE}, 224 | year = {2012}, 225 | volume = {7}, 226 | number = {5}, 227 | pages = {e37893}, 228 | month = may 229 | } 230 | 231 | @book{allsopp07, 232 | author = {John Allsop}, 233 | title = {Microformats: Empowering Your Markup for Web 2.0}, 234 | isbn = {1-59059-814-8}, 235 | publisher = {Publisher}, 236 | address = {London}, 237 | month = mar, 238 | year = {2007}, 239 | } -------------------------------------------------------------------------------- /CV/Friggeri/cv_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/CV/Friggeri/cv_10.pdf -------------------------------------------------------------------------------- /CV/Friggeri/cv_10.xtx: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % Friggeri Resume/CV 3 | % XeLaTeX Template 4 | % Version 1.0 (5/5/13) 5 | % 6 | % This template has been downloaded from: 7 | % http://www.LaTeXTemplates.com 8 | % 9 | % Original author: 10 | % Adrien Friggeri (adrien@friggeri.net) 11 | % https://github.com/afriggeri/CV 12 | % 13 | % License: 14 | % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) 15 | % 16 | % Important notes: 17 | % This template needs to be compiled with XeLaTeX and the bibliography, if used, 18 | % needs to be compiled with biber rather than bibtex. 19 | % 20 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 21 | 22 | \documentclass[]{friggeri-cv} % Add 'print' as an option into the square bracket to remove colors from this template for printing 23 | 24 | \addbibresource{bibliography.bib} % Specify the bibliography file to include publications 25 | 26 | \begin{document} 27 | 28 | \header{john}{smith}{junior business analyst} % Your name and current job title/field 29 | 30 | %---------------------------------------------------------------------------------------- 31 | % SIDEBAR SECTION 32 | %---------------------------------------------------------------------------------------- 33 | 34 | \begin{aside} % In the aside, each new line forces a line break 35 | \section{contact} 36 | 123 Broadway 37 | City, State 12345 38 | Country 39 | ~ 40 | +0 (000) 111 1111 41 | +0 (000) 111 1112 42 | ~ 43 | \href{mailto:john@smith.com}{john@smith.com} 44 | \href{http://www.smith.com}{http://www.smith.com} 45 | \href{http://facebook.com/johnsmith}{fb://jsmith} 46 | \section{languages} 47 | english mother tongue 48 | spanish \& italian fluency 49 | \section{programming} 50 | {\color{red} $\varheartsuit$} JavaScript 51 | Python, C++, PHP 52 | CSS3 \& HTML5 53 | \end{aside} 54 | 55 | %---------------------------------------------------------------------------------------- 56 | % EDUCATION SECTION 57 | %---------------------------------------------------------------------------------------- 58 | 59 | \section{education} 60 | 61 | \begin{entrylist} 62 | %------------------------------------------------ 63 | \entry 64 | {2011--2012} 65 | {Masters {\normalfont of Commerce}} 66 | {The University of California, Berkeley} 67 | {\emph{Money Is The Root Of All Evil -- Or Is It?} \\ This thesis explored the idea that money has been the cause of untold anguish and suffering in the world. I found that it has, in fact, not.} 68 | %------------------------------------------------ 69 | \entry 70 | {2007--2008} 71 | {Bachelor {\normalfont of Business Studies}} 72 | {The University of California, Berkeley} 73 | {Specialization in Commerce} 74 | %------------------------------------------------ 75 | \end{entrylist} 76 | 77 | %---------------------------------------------------------------------------------------- 78 | % WORK EXPERIENCE SECTION 79 | %---------------------------------------------------------------------------------------- 80 | 81 | \section{experience} 82 | 83 | \begin{entrylist} 84 | %------------------------------------------------ 85 | \entry 86 | {2012--Now} 87 | {LEHMAN BROTHERS} 88 | {Los Angeles, California} 89 | {\emph{1\textsuperscript{st} Year Analyst} \\ 90 | Developed spreadsheets for risk analysis on exotic derivatives on a wide array of commodities (ags, oils, precious and base metals), managed blotter and secondary trades on structured notes, liaised with Middle Office, Sales and Structuring for bookkeeping. \\ 91 | Detailed achievements: 92 | \begin{itemize} 93 | \item Learned how to make amazing coffee 94 | \item Finally determined the reason for \textsc{PC LOAD LETTER}: 95 | \begin{itemize} 96 | \item Paper jam 97 | \item Software issues: 98 | \begin{itemize} 99 | \item Word not sending the correct data to printer 100 | \item Windows trying to print in letter format 101 | \end{itemize} 102 | \item Coffee spilled inside printer 103 | \end{itemize} 104 | \item Broke the office record for number of kitten pictures in cubicle 105 | \end{itemize}} 106 | %------------------------------------------------ 107 | \entry 108 | {2010--2011} 109 | {LEHMAN BROTHERS} 110 | {London, United Kingdom} 111 | {\emph{Summer Intern} \\ 112 | Rated "truly distinctive" for Analytical Skills and Teamwork.} 113 | %------------------------------------------------ 114 | \entry 115 | {2008-2009} 116 | {Buy More} 117 | {Burbank, California} 118 | {\emph{Computer Repair Specialist} \\ 119 | Worked in the Nerd Herd and helped to solve computer problems by asking customers to turn their computers off and on again.} 120 | %------------------------------------------------ 121 | \end{entrylist} 122 | 123 | %---------------------------------------------------------------------------------------- 124 | % AWARDS SECTION 125 | %---------------------------------------------------------------------------------------- 126 | 127 | \section{awards} 128 | 129 | \begin{entrylist} 130 | %------------------------------------------------ 131 | \entry 132 | {2011} 133 | {Postgraduate Scholarship} 134 | {School of Business, The University of California} 135 | {Awarded to the top student in their final year of a Bachelors degree.} 136 | %------------------------------------------------ 137 | \end{entrylist} 138 | 139 | %---------------------------------------------------------------------------------------- 140 | % COMMUNICATION SKILLS SECTION 141 | %---------------------------------------------------------------------------------------- 142 | 143 | \section{communication skills} 144 | 145 | \begin{entrylist} 146 | %------------------------------------------------ 147 | \entry 148 | {2011} 149 | {Oral Presentation} 150 | {California Business Conference} 151 | {Presented the research I conducted for my Masters of Commerce degree.} 152 | %------------------------------------------------ 153 | \entry 154 | {2010} 155 | {Poster} 156 | {Annual Business Conference, Oregon} 157 | {As part of the course work for BUS320, I created a poster analyzing several local businesses and presented this at a conference.} 158 | %------------------------------------------------ 159 | \end{entrylist} 160 | 161 | %---------------------------------------------------------------------------------------- 162 | % INTERESTS SECTION 163 | %---------------------------------------------------------------------------------------- 164 | 165 | \section{interests} 166 | 167 | \textbf{professional:} data analysis, company profiling, risk analysis, economics, web design, web app creation, software design, marketing \textbf{personal:} piano, chess, cooking, dancing, running 168 | 169 | %---------------------------------------------------------------------------------------- 170 | % PUBLICATIONS SECTION 171 | %---------------------------------------------------------------------------------------- 172 | 173 | \section{publications} 174 | 175 | \printbibsection{article}{article in peer-reviewed journal} % Print all articles from the bibliography 176 | 177 | \printbibsection{book}{books} % Print all books from the bibliography 178 | 179 | \begin{refsection} % This is a custom heading for those references marked as "inproceedings" but not containing "keyword=france" 180 | \nocite{*} 181 | \printbibliography[sorting=chronological, type=inproceedings, title={international peer-reviewed conferences/proceedings}, notkeyword={france}, heading=subbibliography] 182 | \end{refsection} 183 | 184 | \begin{refsection} % This is a custom heading for those references marked as "inproceedings" and containing "keyword=france" 185 | \nocite{*} 186 | \printbibliography[sorting=chronological, type=inproceedings, title={local peer-reviewed conferences/proceedings}, keyword={france}, heading=subbibliography] 187 | \end{refsection} 188 | 189 | \printbibsection{misc}{other publications} % Print all miscellaneous entries from the bibliography 190 | 191 | \printbibsection{report}{research reports} % Print all research reports from the bibliography 192 | 193 | %---------------------------------------------------------------------------------------- 194 | 195 | \end{document} -------------------------------------------------------------------------------- /CV/Friggeri/friggeri-cv.cls: -------------------------------------------------------------------------------- 1 | \ProvidesClass{friggeri-cv}[2012/04/30 CV class] 2 | \NeedsTeXFormat{LaTeX2e} 3 | 4 | \DeclareOption{print}{\def\@cv@print{}} 5 | \DeclareOption*{% 6 | \PassOptionsToClass{\CurrentOption}{article}% 7 | } 8 | \ProcessOptions\relax 9 | \LoadClass{article} 10 | 11 | 12 | %%%%%%%%%% 13 | % Colors % 14 | %%%%%%%%%% 15 | 16 | \RequirePackage{xcolor} 17 | 18 | \definecolor{white}{RGB}{255,255,255} 19 | 20 | \definecolor{darkgray}{HTML}{333333} 21 | \definecolor{gray}{HTML}{4D4D4D} 22 | \definecolor{lightgray}{HTML}{999999} 23 | 24 | \definecolor{green}{HTML}{C2E15F} 25 | \definecolor{orange}{HTML}{FDA333} 26 | \definecolor{purple}{HTML}{D3A4F9} 27 | \definecolor{red}{HTML}{FB4485} 28 | \definecolor{blue}{HTML}{6CE0F1} 29 | 30 | \ifdefined\@cv@print 31 | \colorlet{green}{gray} 32 | \colorlet{orange}{gray} 33 | \colorlet{purple}{gray} 34 | \colorlet{brown}{gray} 35 | \colorlet{red}{gray} 36 | \colorlet{blue}{gray} 37 | \colorlet{fillheader}{white} 38 | \colorlet{header}{gray} 39 | \else 40 | \colorlet{fillheader}{gray} 41 | \colorlet{header}{white} 42 | \fi 43 | \colorlet{textcolor}{gray} 44 | \colorlet{headercolor}{gray} 45 | 46 | %%%%%%%%% 47 | % Fonts % 48 | %%%%%%%%% 49 | 50 | \RequirePackage[quiet]{fontspec} 51 | \RequirePackage[math-style=TeX,vargreek-shape=unicode]{unicode-math} 52 | 53 | \newfontfamily\bodyfont[]{Helvetica Neue} 54 | \newfontfamily\thinfont[]{Helvetica Neue UltraLight} 55 | \newfontfamily\headingfont[]{Helvetica Neue Condensed Bold} 56 | 57 | \defaultfontfeatures{Mapping=tex-text} 58 | \setmainfont[Mapping=tex-text, Color=textcolor]{Helvetica Neue Light} 59 | 60 | %\setmathfont{XITS Math} 61 | 62 | %%%%%%%%%% 63 | % Header % 64 | %%%%%%%%%% 65 | 66 | \RequirePackage{tikz} 67 | 68 | \newcommand{\rolefont}{% 69 | \fontsize{14pt}{24pt}\selectfont% 70 | \thinfont% 71 | \color{white}% 72 | } 73 | 74 | \newcommand{\header}[3]{% 75 | \begin{tikzpicture}[remember picture,overlay] 76 | \node [rectangle, fill=fillheader, anchor=north, minimum width=\paperwidth, minimum height=4cm] (box) at (current page.north){}; 77 | \node [anchor=center] (name) at (box) {% 78 | \fontsize{40pt}{72pt}\color{header}% 79 | {\thinfont #1}{\bodyfont #2} 80 | }; 81 | \node [anchor=north] at (name.south) {% 82 | \fontsize{14pt}{24pt}\color{header}% 83 | \thinfont #3% 84 | }; 85 | \end{tikzpicture} 86 | \vspace{2.5cm} 87 | \vspace{-2\parskip} 88 | } 89 | 90 | 91 | %%%%%%%%%%%%% 92 | % Structure % 93 | %%%%%%%%%%%%% 94 | \RequirePackage{parskip} 95 | 96 | \newcounter{colorCounter} 97 | \def\@sectioncolor#1#2#3{% 98 | {% 99 | \color{% 100 | \ifcase\value{colorCounter}% 101 | blue\or% 102 | red\or% 103 | orange\or% 104 | green\or% 105 | purple\or% 106 | brown\else% 107 | headercolor\fi% 108 | } #1#2#3% 109 | }% 110 | \stepcounter{colorCounter}% 111 | } 112 | 113 | \renewcommand{\section}[1]{ 114 | \par\vspace{\parskip} 115 | {% 116 | \LARGE\headingfont\color{headercolor}% 117 | \@sectioncolor #1% 118 | } 119 | \par\vspace{\parskip} 120 | } 121 | 122 | \renewcommand{\subsection}[2]{ 123 | \par\vspace{.5\parskip}% 124 | \Large\headingfont\color{headercolor} #2% 125 | \par\vspace{.25\parskip}% 126 | } 127 | 128 | \pagestyle{empty} 129 | 130 | 131 | %%%%%%%%%%%%%%%%%%%% 132 | % List environment % 133 | %%%%%%%%%%%%%%%%%%%% 134 | 135 | \setlength{\tabcolsep}{0pt} 136 | \newenvironment{entrylist}{% 137 | \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll} 138 | }{% 139 | \end{tabular*} 140 | } 141 | \renewcommand{\bfseries}{\headingfont\color{headercolor}} 142 | \newcommand{\entry}[4]{% 143 | #1&\parbox[t]{11.8cm}{% 144 | \textbf{#2}% 145 | \hfill% 146 | {\footnotesize\addfontfeature{Color=lightgray} #3}\\% 147 | #4\vspace{\parsep}% 148 | }\\} 149 | 150 | 151 | %%%%%%%%%%%%%% 152 | % Side block % 153 | %%%%%%%%%%%%%% 154 | 155 | \RequirePackage[absolute,overlay]{textpos} 156 | \setlength{\TPHorizModule}{1cm} 157 | \setlength{\TPVertModule}{1cm} 158 | \newenvironment{aside}{% 159 | \let\oldsection\section 160 | \renewcommand{\section}[1]{ 161 | \par\vspace{\baselineskip}{\Large\headingfont\color{headercolor} ##1} 162 | } 163 | \begin{textblock}{3.6}(1.5, 4.33) 164 | \begin{flushright} 165 | \obeycr 166 | }{% 167 | \restorecr 168 | \end{flushright} 169 | \end{textblock} 170 | \let\section\oldsection 171 | } 172 | 173 | %%%%%%%%%%%%%%%% 174 | % Bibliography % 175 | %%%%%%%%%%%%%%%% 176 | 177 | \RequirePackage[style=verbose, maxnames=99, sorting=ydnt]{biblatex} 178 | 179 | \DeclareFieldFormat[article]{title}{#1\par} 180 | \DeclareFieldFormat[book]{title}{#1\par} 181 | \DeclareFieldFormat[inproceedings]{title}{#1\par} 182 | \DeclareFieldFormat[misc]{title}{#1\par} 183 | \DeclareFieldFormat[report]{title}{#1\par} 184 | 185 | \DeclareBibliographyDriver{article}{% 186 | \printfield{title}% 187 | \newblock% 188 | \printnames{author}% 189 | \par% 190 | \newblock% 191 | {% 192 | \footnotesize\addfontfeature{Color=lightgray}\itshape% 193 | \usebibmacro{journal+issuetitle}% 194 | \setunit{\space}% 195 | \printfield{pages}% 196 | \newunit% 197 | \printlist{publisher}% 198 | \setunit*{\addcomma\space}% 199 | \printfield{year}% 200 | \newunit% 201 | } 202 | \par\vspace{0.3\baselineskip} 203 | } 204 | 205 | \DeclareBibliographyDriver{book}{% 206 | \printfield{title}% 207 | \newblock% 208 | \printnames{author}% 209 | \par% 210 | \newblock% 211 | {% 212 | \footnotesize\addfontfeature{Color=lightgray}\itshape% 213 | \printlist{publisher}% 214 | \setunit*{\addcomma\space}% 215 | \printfield{note}% 216 | \setunit*{\addcomma\space}% 217 | \printfield{year}% 218 | \setunit{\addcomma\space}% 219 | \printlist{location}% 220 | \newunit% 221 | } 222 | \par\vspace{0.3\baselineskip} 223 | } 224 | 225 | 226 | \DeclareBibliographyDriver{inproceedings}{% 227 | \printfield{title}% 228 | \newblock% 229 | \printnames{author}% 230 | \par% 231 | \newblock% 232 | {% 233 | \footnotesize\addfontfeature{Color=lightgray}% 234 | \printfield{booktitle}% 235 | \setunit{\addcomma\space}% 236 | \printfield{year}% 237 | \setunit{\addcomma\space}% 238 | \printlist{location}% 239 | \newunit% 240 | } 241 | \par\vspace{0.3\baselineskip} 242 | } 243 | 244 | \DeclareBibliographyDriver{misc}{% 245 | \printfield{title}% 246 | \newblock% 247 | \printnames{author}% 248 | \par% 249 | \newblock% 250 | {% 251 | \footnotesize\addfontfeature{Color=lightgray}\itshape% 252 | \printfield{booktitle}% 253 | \setunit*{\addcomma\space}% 254 | \printfield{note}% 255 | \setunit*{\addcomma\space}% 256 | \printfield{year}% 257 | \setunit{\addcomma\space}% 258 | \printlist{location}% 259 | \newunit% 260 | } 261 | \par\vspace{0.3\baselineskip} 262 | } 263 | 264 | \DeclareBibliographyDriver{report}{% 265 | \printfield{title}% 266 | \newblock% 267 | \printnames{author}% 268 | \par% 269 | \newblock% 270 | {% 271 | \footnotesize\addfontfeature{Color=lightgray}\itshape% 272 | \printfield{type}% 273 | \setunit{\space}% 274 | \printfield{number}% 275 | \setunit{\addcomma\space}% 276 | \printfield{year}% 277 | \newunit% 278 | } 279 | \par\vspace{0.3\baselineskip} 280 | } 281 | 282 | \DeclareNameFormat{author}{% 283 | \small\addfontfeature{Color=lightgray}% 284 | \ifblank{#3}{}{#3\space}#1% 285 | \ifthenelse{\value{listcount}<\value{liststop}} 286 | {\addcomma\space} 287 | {}% 288 | } 289 | 290 | \newcommand{\printbibsection}[2]{ 291 | \begin{refsection} 292 | \nocite{*} 293 | \printbibliography[sorting=chronological, type={#1}, title={#2}, heading=subbibliography] 294 | \end{refsection} 295 | } 296 | 297 | \DeclareSortingScheme{chronological}{ 298 | \sort[direction=descending]{\field{year}} 299 | \sort[direction=descending]{\field{month}} 300 | } 301 | 302 | 303 | 304 | %%%%%%%%%%%%%%%% 305 | % Other tweaks % 306 | %%%%%%%%%%%%%%%% 307 | 308 | \RequirePackage[left=6.1cm,top=2cm,right=1.5cm,bottom=2.5cm,nohead,nofoot]{geometry} 309 | \RequirePackage{hyperref} -------------------------------------------------------------------------------- /Essay/essay_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Essay/essay_2.pdf -------------------------------------------------------------------------------- /Essay/essay_2.tex: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2 | % Thin Sectioned Essay 3 | % LaTeX Template 4 | % Version 1.0 (3/8/13) 5 | % 6 | % This template has been downloaded from: 7 | % http://www.LaTeXTemplates.com 8 | % 9 | % Original Author: 10 | % Nicolas Diaz (nsdiaz@uc.cl) with extensive modifications by: 11 | % Vel (vel@latextemplates.com) 12 | % 13 | % License: 14 | % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) 15 | % 16 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 17 | 18 | %---------------------------------------------------------------------------------------- 19 | % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS 20 | %---------------------------------------------------------------------------------------- 21 | 22 | \documentclass[a4paper, 11pt]{article} % Font size (can be 10pt, 11pt or 12pt) and paper size (remove a4paper for US letter paper) 23 | 24 | \usepackage[protrusion=true,expansion=true]{microtype} % Better typography 25 | \usepackage{graphicx} % Required for including pictures 26 | \usepackage{wrapfig} % Allows in-line images 27 | 28 | \usepackage{mathpazo} % Use the Palatino font 29 | \usepackage[T1]{fontenc} % Required for accented characters 30 | \linespread{1.05} % Change line spacing here, Palatino benefits from a slight increase by default 31 | 32 | \makeatletter 33 | \renewcommand\@biblabel[1]{\textbf{#1.}} % Change the square brackets for each bibliography item from '[1]' to '1.' 34 | \renewcommand{\@listI}{\itemsep=0pt} % Reduce the space between items in the itemize and enumerate environments and the bibliography 35 | 36 | \renewcommand{\maketitle}{ % Customize the title - do not edit title and author name here, see the TITLE block below 37 | \begin{flushright} % Right align 38 | {\LARGE\@title} % Increase the font size of the title 39 | 40 | \vspace{50pt} % Some vertical space between the title and author name 41 | 42 | {\large\@author} % Author name 43 | \\\@date % Date 44 | 45 | \vspace{40pt} % Some vertical space between the author block and abstract 46 | \end{flushright} 47 | } 48 | 49 | %---------------------------------------------------------------------------------------- 50 | % TITLE 51 | %---------------------------------------------------------------------------------------- 52 | 53 | \title{\textbf{Unnecessarily Long Essay Title}\\ % Title 54 | Focused and Deliciously Witty Subtitle} % Subtitle 55 | 56 | \author{\textsc{Ford Prefect} % Author 57 | \\{\textit{Interstellar University}}} % Institution 58 | 59 | \date{\today} % Date 60 | 61 | %---------------------------------------------------------------------------------------- 62 | 63 | \begin{document} 64 | 65 | \maketitle % Print the title section 66 | 67 | %---------------------------------------------------------------------------------------- 68 | % ABSTRACT AND KEYWORDS 69 | %---------------------------------------------------------------------------------------- 70 | 71 | %\renewcommand{\abstractname}{Summary} % Uncomment to change the name of the abstract to something else 72 | 73 | \begin{abstract} 74 | Morbi tempor congue porta. Proin semper, leo vitae faucibus dictum, metus mauris lacinia lorem, ac congue leo felis eu turpis. Sed nec nunc pellentesque, gravida eros at, porttitor ipsum. Praesent consequat urna a lacus lobortis ultrices eget ac metus. In tempus hendrerit rhoncus. Mauris dignissim turpis id sollicitudin lacinia. Praesent libero tellus, fringilla nec ullamcorper at, ultrices id nulla. Phasellus placerat a tellus a malesuada. 75 | \end{abstract} 76 | 77 | \hspace*{3,6mm}\textit{Keywords:} lorem , ipsum , dolor , sit amet , lectus % Keywords 78 | 79 | \vspace{30pt} % Some vertical space between the abstract and first section 80 | 81 | %---------------------------------------------------------------------------------------- 82 | % ESSAY BODY 83 | %---------------------------------------------------------------------------------------- 84 | 85 | \section*{Introduction} 86 | 87 | This statement requires citation \cite{Smith:2012qr}; this one does too \cite{Smith:2013jd}. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dictum lacus sem, ut varius ante dignissim ac. Sed a mi quis lectus feugiat aliquam. Nunc sed vulputate velit. Sed commodo metus vel felis semper, quis rutrum odio vulputate. Donec a elit porttitor, facilisis nisl sit amet, dignissim arcu. Vivamus accumsan pellentesque nulla at euismod. Duis porta rutrum sem, eu facilisis mi varius sed. Suspendisse potenti. Mauris rhoncus neque nisi, ut laoreet augue pretium luctus. Vestibulum sit amet luctus sem, luctus ultrices leo. Aenean vitae sem leo. 88 | 89 | Nullam semper quam at ante convallis posuere. Ut faucibus tellus ac massa luctus consectetur. Nulla pellentesque tortor et aliquam vehicula. Maecenas imperdiet euismod enim ut pharetra. Suspendisse pulvinar sapien vitae placerat pellentesque. Nulla facilisi. Aenean vitae nunc venenatis, vehicula neque in, congue ligula. 90 | 91 | Pellentesque quis neque fringilla, varius ligula quis, malesuada dolor. Aenean malesuada urna porta, condimentum nisl sed, scelerisque nisi. Suspendisse ac orci quis massa porta dignissim. Morbi sollicitudin, felis eget tristique laoreet, ante lacus pretium lacus, nec ornare sem lorem a velit. Pellentesque eu erat congue, ullamcorper ante ut, tristique turpis. Nam sodales mi sed nisl tincidunt vestibulum. Interdum et malesuada fames ac ante ipsum primis in faucibus. 92 | 93 | %------------------------------------------------ 94 | 95 | \section*{Section Name} 96 | 97 | Cras gravida, est vel interdum euismod, tortor mi lobortis mi, quis adipiscing elit lacus ut orci. Phasellus nec fringilla nisi, ut vestibulum neque. Aenean non risus eu nunc accumsan condimentum at sed ipsum. 98 | \begin{wrapfigure}{l}{0.4\textwidth} % Inline image example 99 | \begin{center} 100 | \includegraphics[width=0.38\textwidth]{fish.png} 101 | \end{center} 102 | \caption{Fish} 103 | \end{wrapfigure} 104 | Aliquam fringilla non diam sed varius. Suspendisse tellus felis, hendrerit non bibendum ut, adipiscing vitae diam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla lobortis purus eget nisl scelerisque, commodo rhoncus lacus porta. Vestibulum vitae turpis tincidunt, varius dolor in, dictum lectus. Aenean ac ornare augue, ac facilisis purus. Sed leo lorem, molestie sit amet fermentum id, suscipit ut sem. Vestibulum orci arcu, vehicula sed tortor id, ornare dapibus lorem. Praesent aliquet iaculis lacus nec fermentum. Morbi eleifend blandit dolor, pharetra hendrerit neque ornare vel. Nulla ornare, nisl eget imperdiet ornare, libero enim interdum mi, ut lobortis quam velit bibendum nibh. 105 | 106 | Morbi tempor congue porta. Proin semper, leo vitae faucibus dictum, metus mauris lacinia lorem, ac congue leo felis eu turpis. Sed nec nunc pellentesque, gravida eros at, porttitor ipsum. Praesent consequat urna a lacus lobortis ultrices eget ac metus. In tempus hendrerit rhoncus. Mauris dignissim turpis id sollicitudin lacinia. Praesent libero tellus, fringilla nec ullamcorper at, ultrices id nulla. Phasellus placerat a tellus a malesuada. 107 | 108 | %------------------------------------------------ 109 | 110 | \section*{Conclusion} 111 | 112 | Fusce in nibh augue. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In dictum accumsan sapien, ut hendrerit nisi. Phasellus ut nulla mauris. Phasellus sagittis nec odio sed posuere. Vestibulum porttitor dolor quis suscipit bibendum. Mauris risus lectus, cursus vitae hendrerit posuere, congue ac est. Suspendisse commodo eu eros non cursus. Mauris ultrices venenatis dolor, sed aliquet odio tempor pellentesque. Duis ultricies, mauris id lobortis vulputate, tellus turpis eleifend elit, in gravida leo tortor ultricies est. Maecenas vitae ipsum at dui sodales condimentum a quis dui. Nam mi sapien, lobortis ac blandit eget, dignissim quis nunc. 113 | 114 | \begin{enumerate} 115 | \item First numbered list item 116 | \item Second numbered list item 117 | \end{enumerate} 118 | 119 | Donec luctus tincidunt mauris, non ultrices ligula aliquam id. Sed varius, magna a faucibus congue, arcu tellus pellentesque nisl, vel laoreet magna eros et magna. Vivamus lobortis elit eu dignissim ultrices. Fusce erat nulla, ornare at dolor quis, rhoncus venenatis velit. Donec sed elit mi. Sed semper tellus a convallis viverra. Maecenas mi lorem, placerat sit amet sem quis, adipiscing tincidunt turpis. Cras a urna et tellus dictum eleifend. Fusce dignissim lectus risus, in bibendum tortor lacinia interdum. 120 | 121 | %---------------------------------------------------------------------------------------- 122 | % BIBLIOGRAPHY 123 | %---------------------------------------------------------------------------------------- 124 | 125 | \bibliographystyle{unsrt} 126 | 127 | \bibliography{sample} 128 | 129 | %---------------------------------------------------------------------------------------- 130 | 131 | \end{document} -------------------------------------------------------------------------------- /Essay/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Essay/fish.png -------------------------------------------------------------------------------- /Essay/sample.bib: -------------------------------------------------------------------------------- 1 | @BOOK{Smith:2012qr, 2 | title = {{B}ook {T}itle}, 3 | publisher = {Publisher}, 4 | author = {Smith, J.~M. and Jones, A.~B.}, 5 | year = {2012}, 6 | edition = {7th}, 7 | } 8 | 9 | @ARTICLE{Smith:2013jd, 10 | author = {Jones, A.~B. and Smith, J.~M.}, 11 | title = {{A}rticle {T}itle}, 12 | journal = {Journal title}, 13 | year = {2013}, 14 | volume = {13}, 15 | pages = {123-456}, 16 | number = {52}, 17 | month = {March}, 18 | publisher = {Publisher} 19 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | -------------------------------------------------------------------------------- /Previews/Article-ACMSIG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-ACMSIG.png -------------------------------------------------------------------------------- /Previews/Article-ColorTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-ColorTitle.png -------------------------------------------------------------------------------- /Previews/Article-ICML12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-ICML12.png -------------------------------------------------------------------------------- /Previews/Article-JournalArticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-JournalArticle.png -------------------------------------------------------------------------------- /Previews/Article-NIPS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-NIPS13.png -------------------------------------------------------------------------------- /Previews/Article-PNAS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Article-PNAS.png -------------------------------------------------------------------------------- /Previews/CV-Friggeri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/CV-Friggeri.png -------------------------------------------------------------------------------- /Previews/Essay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/Essay.png -------------------------------------------------------------------------------- /Previews/ProblemSet-Kleinberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/Previews/ProblemSet-Kleinberg.png -------------------------------------------------------------------------------- /ProblemSet/Kleinberg/PSet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deedy/Latex-Templates/b616f5d04b24394e29c58bf15251894655c3d02a/ProblemSet/Kleinberg/PSet.pdf -------------------------------------------------------------------------------- /ProblemSet/Kleinberg/PSet.tex: -------------------------------------------------------------------------------- 1 | \documentclass[12pt]{article} 2 | 3 | \usepackage{fullpage} 4 | \usepackage{epic} 5 | \usepackage{eepic} 6 | \usepackage{graphicx} 7 | 8 | \newcommand{\proof}[1]{ 9 | {\noindent {\it Proof.} {#1} \rule{2mm}{2mm} \vskip \belowdisplayskip} 10 | } 11 | 12 | 13 | \newtheorem{lemma}{Lemma}[section] 14 | \newtheorem{theorem}[lemma]{Theorem} 15 | \newtheorem{claim}[lemma]{Claim} 16 | \newtheorem{definition}[lemma]{Definition} 17 | \newtheorem{corollary}[lemma]{Corollary} 18 | 19 | \setlength{\oddsidemargin}{0in} 20 | \setlength{\topmargin}{0in} 21 | \setlength{\textwidth}{6.5in} 22 | \setlength{\textheight}{8.5in} 23 | 24 | \begin{document} 25 | 26 | \setlength{\fboxrule}{.5mm}\setlength{\fboxsep}{1.2mm} 27 | \newlength{\boxlength}\setlength{\boxlength}{\textwidth} 28 | \addtolength{\boxlength}{-4mm} 29 | \begin{center}\framebox{\parbox{\boxlength}{\bf 30 | CS 683: Advanced Algorithms \hfill 31 | TOPIC 32 | \\ 33 | DATE 34 | \hfill 35 | Scribe: NAMES 36 | }}\end{center} 37 | \vspace{5mm} 38 | 39 | \section{First Section} 40 | 41 | The text of the notes goes here. 42 | To include a theorem with proof, use the following format. 43 | 44 | \begin{theorem} 45 | This is a theorem statement. 46 | \label{thm:sample-statement} 47 | \end{theorem} 48 | 49 | \proof{ 50 | This is a proof. 51 | } 52 | 53 | 54 | 55 | \end{document} 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Latex-Templates 2 | =============== 3 | 4 | A concise set of Latex templates that serves a small set of needs - CV, Essays, Articles and Problem Sets. 5 | These conferences were chosen either out of personal interest, or simply the beauty of their recommended submission templates. 6 | 7 | There are currently **9** templates. 8 | 9 | The format **.xtx** is a convenient extension for TeX files that need to be compiled with XeTeX. 10 | 11 | ## [Article - ACM SIG](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/ACMSIG) 12 | The [ACM SIG Proceedings](http://www.acm.org/sigs/publications/proceedings)-templates format - The Association of Computing Machinery's conference on Special Interest Groups. 13 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-ACMSIG.png) 14 | 15 | ## [Article - Color Title](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/ColorTitle) 16 | A colorful template from [LatexTemplates.com](http://www.latextemplates).com/template/large-colored-title-article) for a bright article. 17 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-ColorTitle.png) 18 | 19 | ## [Article - ICML](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/ICML12) 20 | The [ICML](http://icml.cc/) - The International Conference on Machine Learning's [format](http://icml.cc/2014/image/icml2014stylefiles.zip). 21 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-ICML12.png) 22 | 23 | ## [Article - Journal Article](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/JournalArticle) 24 | A great template from [LatexTemplates.com](http://www.latextemplates).com/template/journal-article for a quick single columned simple journal article. 25 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-JournalArticle.png) 26 | 27 | ## [Article - NIPS](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/NIPS13) 28 | The [NIPS](http://nips.cc/) - The Neural Information Processing Systems Foundation's [format](http://nips.cc/Conferences/2013/PaperInformation/StyleFiles). 29 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-NIPS13.png) 30 | 31 | ## [Article - PNAS](https://github.com/deedydas/Latex-Templates/tree/master/Article-Journal/PNAS) 32 | The [PNAS Conference](http://www.pnas.org/) - The Proceedings of the National Academy of Science - has a special Latex [format](http://www.pnas.org/site/authors/LaTex.xhtml) too. 33 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Article-PNAS.png) 34 | 35 | ## [CV - Friggeri](https://github.com/deedydas/Latex-Templates/tree/master/CV/Friggeri) 36 | A legendary Latex CV template by [Adrien Friggeri](http://friggeri.net/) originally created [here](https://github.com/afriggeri/cv. 37 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/CV-Friggeri.png) 38 | 39 | ## [Essay](https://github.com/deedydas/Latex-Templates/tree/master/Essay) 40 | A great template from [LatexTemplates.com](http://www.latextemplates.com/template/thin-sectioned-essay) for quick cited Essay writing. 41 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/Essay.png) 42 | 43 | ## [Problem Set - Kleinberg](https://github.com/deedydas/Latex-Templates/tree/master/ProblemSet/Kleinberg) 44 | A Latex template used by Jon Kleinberg in his class at Cornell [before](http://www.cs.cornell.edu/Courses/cs683/2001SP/) and possibly to date. 45 | ![alt tag](https://raw.githubusercontent.com/deedydas/Latex-Templates/master/Previews/ProblemSet-Kleinberg.png) 46 | 47 | 48 | 49 | License 50 | =============== 51 | 52 | CC0 1.0 Universal 53 | 54 | Statement of Purpose 55 | 56 | The laws of most jurisdictions throughout the world automatically confer 57 | exclusive Copyright and Related Rights (defined below) upon the creator and 58 | subsequent owner(s) (each and all, an "owner") of an original work of 59 | authorship and/or a database (each, a "Work"). 60 | 61 | Certain owners wish to permanently relinquish those rights to a Work for the 62 | purpose of contributing to a commons of creative, cultural and scientific 63 | works ("Commons") that the public can reliably and without fear of later 64 | claims of infringement build upon, modify, incorporate in other works, reuse 65 | and redistribute as freely as possible in any form whatsoever and for any 66 | purposes, including without limitation commercial purposes. These owners may 67 | contribute to the Commons to promote the ideal of a free culture and the 68 | further production of creative, cultural and scientific works, or to gain 69 | reputation or greater distribution for their Work in part through the use and 70 | efforts of others. 71 | 72 | For these and/or other purposes and motivations, and without any expectation 73 | of additional consideration or compensation, the person associating CC0 with a 74 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 75 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 76 | and publicly distribute the Work under its terms, with knowledge of his or her 77 | Copyright and Related Rights in the Work and the meaning and intended legal 78 | effect of CC0 on those rights. 79 | 80 | 1. Copyright and Related Rights. A Work made available under CC0 may be 81 | protected by copyright and related or neighboring rights ("Copyright and 82 | Related Rights"). Copyright and Related Rights include, but are not limited 83 | to, the following: 84 | 85 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 86 | and translate a Work; 87 | 88 | ii. moral rights retained by the original author(s) and/or performer(s); 89 | 90 | iii. publicity and privacy rights pertaining to a person's image or likeness 91 | depicted in a Work; 92 | 93 | iv. rights protecting against unfair competition in regards to a Work, 94 | subject to the limitations in paragraph 4(a), below; 95 | 96 | v. rights protecting the extraction, dissemination, use and reuse of data in 97 | a Work; 98 | 99 | vi. database rights (such as those arising under Directive 96/9/EC of the 100 | European Parliament and of the Council of 11 March 1996 on the legal 101 | protection of databases, and under any national implementation thereof, 102 | including any amended or successor version of such directive); and 103 | 104 | vii. other similar, equivalent or corresponding rights throughout the world 105 | based on applicable law or treaty, and any national implementations thereof. 106 | 107 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 108 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 109 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 110 | and Related Rights and associated claims and causes of action, whether now 111 | known or unknown (including existing as well as future claims and causes of 112 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 113 | duration provided by applicable law or treaty (including future time 114 | extensions), (iii) in any current or future medium and for any number of 115 | copies, and (iv) for any purpose whatsoever, including without limitation 116 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 117 | the Waiver for the benefit of each member of the public at large and to the 118 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 119 | shall not be subject to revocation, rescission, cancellation, termination, or 120 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 121 | by the public as contemplated by Affirmer's express Statement of Purpose. 122 | 123 | 3. Public License Fallback. Should any part of the Waiver for any reason be 124 | judged legally invalid or ineffective under applicable law, then the Waiver 125 | shall be preserved to the maximum extent permitted taking into account 126 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 127 | is so judged Affirmer hereby grants to each affected person a royalty-free, 128 | non transferable, non sublicensable, non exclusive, irrevocable and 129 | unconditional license to exercise Affirmer's Copyright and Related Rights in 130 | the Work (i) in all territories worldwide, (ii) for the maximum duration 131 | provided by applicable law or treaty (including future time extensions), (iii) 132 | in any current or future medium and for any number of copies, and (iv) for any 133 | purpose whatsoever, including without limitation commercial, advertising or 134 | promotional purposes (the "License"). The License shall be deemed effective as 135 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 136 | License for any reason be judged legally invalid or ineffective under 137 | applicable law, such partial invalidity or ineffectiveness shall not 138 | invalidate the remainder of the License, and in such case Affirmer hereby 139 | affirms that he or she will not (i) exercise any of his or her remaining 140 | Copyright and Related Rights in the Work or (ii) assert any associated claims 141 | and causes of action with respect to the Work, in either case contrary to 142 | Affirmer's express Statement of Purpose. 143 | 144 | 4. Limitations and Disclaimers. 145 | 146 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 147 | surrendered, licensed or otherwise affected by this document. 148 | 149 | b. Affirmer offers the Work as-is and makes no representations or warranties 150 | of any kind concerning the Work, express, implied, statutory or otherwise, 151 | including without limitation warranties of title, merchantability, fitness 152 | for a particular purpose, non infringement, or the absence of latent or 153 | other defects, accuracy, or the present or absence of errors, whether or not 154 | discoverable, all to the greatest extent permissible under applicable law. 155 | 156 | c. Affirmer disclaims responsibility for clearing rights of other persons 157 | that may apply to the Work or any use thereof, including without limitation 158 | any person's Copyright and Related Rights in the Work. Further, Affirmer 159 | disclaims responsibility for obtaining any necessary consents, permissions 160 | or other rights required for any use of the Work. 161 | 162 | d. Affirmer understands and acknowledges that Creative Commons is not a 163 | party to this document and has no duty or obligation with respect to this 164 | CC0 or use of the Work. 165 | 166 | For more information, please see 167 | 168 | --------------------------------------------------------------------------------