├── .github └── workflows │ └── pdflatex.yml ├── .gitignore ├── ContactContent.tex ├── LeoCStein-NoPubs.tex ├── LeoCStein-PubsOnly.tex ├── LeoCStein.tex ├── PubsContent.tex ├── README.md ├── TalksContent.tex ├── citeCounts.txt ├── fetchInspCiteCounts.py ├── fetchInspCiteCounts.sh └── res.cls /.github/workflows/pdflatex.yml: -------------------------------------------------------------------------------- 1 | name: LaTeX build 2 | on: 3 | push: 4 | branches-ignore: 5 | - 'gh-action-result/pdflatex' 6 | jobs: 7 | build_latex: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Set up Git repository 11 | uses: actions/checkout@v2 12 | - name: Compile LaTeX document 13 | uses: xu-cheng/latex-action@v2 14 | with: 15 | root_file: | 16 | LeoCStein.tex 17 | LeoCStein-PubsOnly.tex 18 | LeoCStein-NoPubs.tex 19 | - name: Commit to orphan branch 20 | run: | 21 | git checkout --orphan gh-action-result/pdflatex 22 | git rm -rf . 23 | git add LeoCStein.pdf 24 | git add LeoCStein-PubsOnly.pdf 25 | git add LeoCStein-NoPubs.pdf 26 | git -c user.name='GitHub Action' -c user.email='action@github.com' commit -m "Built paper" 27 | - name: Push changes 28 | uses: ad-m/github-push-action@master 29 | with: 30 | github_token: ${{ secrets.GITHUB_TOKEN }} 31 | branch: gh-action-result/pdflatex 32 | force: true 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.out 4 | *Notes.bib 5 | *.rel 6 | *.blg 7 | *.gz 8 | 9 | LeoCStein*.pdf 10 | -------------------------------------------------------------------------------- /ContactContent.tex: -------------------------------------------------------------------------------- 1 | \section{Contact Information} 2 | %\vspace{.05in} 3 | 205 Lewis Hall \hfill \href{mailto:lcstein@olemiss.edu}{lcstein@olemiss.edu}\\ 4 | University of Mississippi \hfill \href{https://duetosymmetry.com/}{duetosymmetry.com}\\ 5 | University, MS 38677-1848 USA \hfill \href{tel:1-662-915-1941}{1-662-915-1941} 6 | 7 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 8 | 9 | % Local Variables: 10 | % mode: latex 11 | % TeX-master: "LeoCStein.tex" 12 | % End: 13 | -------------------------------------------------------------------------------- /LeoCStein-NoPubs.tex: -------------------------------------------------------------------------------- 1 | % -*- mode: LaTeX; -*- 2 | 3 | \def\nopubs{} 4 | \input{LeoCStein.tex} 5 | -------------------------------------------------------------------------------- /LeoCStein-PubsOnly.tex: -------------------------------------------------------------------------------- 1 | \let\nofiles\relax % This is because res says to not emit aux files, 2 | % but lastpage needs aux files. 3 | \documentclass[margin,line]{res} 4 | \usepackage[colorlinks=true]{hyperref} 5 | \usepackage[utf8]{inputenc} 6 | \usepackage[T1]{fontenc} 7 | \usepackage{microtype} 8 | \usepackage{fourier-orns} 9 | \usepackage{amsmath,amssymb} 10 | \usepackage{lastpage} 11 | \usepackage{fancyhdr} 12 | \usepackage{etaremune} 13 | 14 | \oddsidemargin -.5in 15 | \evensidemargin -.5in 16 | \voffset -25pt 17 | %\topmargin -.2in 18 | \headsep 25pt 19 | \textwidth=6.0in 20 | \textheight=9.4in 21 | \itemsep=0in 22 | \parsep=0in 23 | 24 | % Headings 25 | \pagestyle{fancy} 26 | \lhead{Leo C.~Stein --- Publication List (as of \today)} 27 | \chead{} 28 | \rhead{\thepage\ of \pageref*{LastPage}} 29 | \lfoot{} 30 | \cfoot{} 31 | \rfoot{} 32 | \renewcommand{\headrulewidth}{0.4pt} 33 | %\renewcommand{\footrulewidth}{0.4pt} 34 | 35 | % Give hyperref some metadata 36 | \hypersetup{pdftitle={Leo C. Stein — Publication List (CV)}, 37 | pdfauthor={Leo C. Stein}, 38 | pdfsubject={Leo C. Stein's list of academic publications}, 39 | pdfkeywords={physics, gravity, general relativity, black holes, 40 | gravitational waves, numerical relativity, beyond-GR, asymptotia, 41 | differential geometry, dynamical systems}} 42 | 43 | % I want small caps for the section style 44 | \def\sectionfont{\sc} 45 | 46 | % Generate a PDF TOC 47 | \let\oldsection\section 48 | \def\section#1{\oldsection{#1}% 49 | \phantomsection% 50 | \addcontentsline{toc}{section}{#1}% 51 | } 52 | 53 | % The above seems to screw up the spacing for sections that start with lists... 54 | \newcommand{\secstartswithlist}{\leavevmode \vspace{-\baselineskip}} 55 | 56 | \begin{document} 57 | 58 | \newcommand{\myname}{Leo C.~Stein --- Publications} 59 | \newlength{\mynamewidth} 60 | \settowidth{\mynamewidth}{\namefont\myname} 61 | 62 | \name{\hspace*{0.5\textwidth}\hspace{-0.5\mynamewidth} \myname \vspace*{.1in}} 63 | % On the first page, have no header. 64 | \thispagestyle{empty} 65 | 66 | \begin{resume} 67 | 68 | \input{ContactContent.tex} 69 | 70 | \input{PubsContent.tex} 71 | 72 | \end{resume} 73 | \end{document} 74 | 75 | % Local Variables: 76 | % mode: latex 77 | % End: 78 | -------------------------------------------------------------------------------- /LeoCStein.tex: -------------------------------------------------------------------------------- 1 | \let\nofiles\relax % This is because res says to not emit aux files, 2 | % but lastpage needs aux files. 3 | \documentclass[margin,line]{res} 4 | \usepackage[colorlinks=true]{hyperref} 5 | \usepackage[utf8]{inputenc} 6 | \usepackage[T1]{fontenc} 7 | \usepackage{microtype} 8 | \usepackage{fourier-orns} 9 | \usepackage{amsmath,amssymb} 10 | \usepackage{lastpage} 11 | \usepackage{fancyhdr} 12 | \usepackage{etaremune} 13 | \usepackage[normalem]{ulem} 14 | \usepackage[style=iso]{datetime2} 15 | 16 | \oddsidemargin -.5in 17 | \evensidemargin -.5in 18 | \voffset -25pt 19 | %\topmargin -.2in 20 | \headsep 25pt 21 | \textwidth=6.0in 22 | \textheight=8.9in 23 | \itemsep=0in 24 | \parsep=0in 25 | 26 | % Headings 27 | \pagestyle{fancy} 28 | \lhead{Leo C.~Stein --- Curriculum Vitae (as of \today)} 29 | \chead{} 30 | \rhead{\thepage\ of \pageref*{LastPage}} 31 | \lfoot{} 32 | \cfoot{} 33 | \rfoot{} 34 | \renewcommand{\headrulewidth}{0.4pt} 35 | %\renewcommand{\footrulewidth}{0.4pt} 36 | 37 | % Give hyperref some metadata 38 | \hypersetup{pdftitle={Leo C. Stein — Curriculum Vitae (CV)}, 39 | pdfauthor={Leo C. Stein}, 40 | pdfsubject={Leo C. Stein's academic curriculum vitae (CV)}, 41 | pdfkeywords={physics, gravity, general relativity, black holes, 42 | gravitational waves, numerical relativity, beyond-GR, asymptotia, 43 | differential geometry, dynamical systems}} 44 | 45 | % I want small caps for the section style 46 | \def\sectionfont{\sc} 47 | 48 | % Generate a PDF TOC 49 | \let\oldsection\section 50 | \def\section#1{\oldsection{#1}% 51 | \phantomsection% 52 | \addcontentsline{toc}{section}{#1}% 53 | } 54 | 55 | % The above seems to screw up the spacing for sections that start with lists... 56 | \newcommand{\secstartswithlist}{\leavevmode \vspace{-\baselineskip}} 57 | 58 | \begin{document} 59 | 60 | \newcommand{\myname}{Leo C.~Stein} 61 | \newlength{\mynamewidth} 62 | \settowidth{\mynamewidth}{\namefont\myname} 63 | 64 | \name{\hspace*{0.5\textwidth}\hspace{-0.5\mynamewidth} \myname \vspace*{.1in}} 65 | % On the first page, have no header. 66 | \thispagestyle{empty} 67 | 68 | \begin{resume} 69 | 70 | \input{ContactContent.tex} 71 | 72 | % \section{Citizenship} 73 | % United States 74 | 75 | \section{Education} 76 | {\bf Ph.D., Physics,} Massachusetts Institute of Technology, Cambridge, MA, USA \hfill {\bf May 2012}\\ 77 | \vspace*{-.1in} 78 | \begin{itemize} 79 | \item[ ] Dissertation Advisor: Prof.\ Scott Hughes 80 | \item[ ] Dissertation Title: {\it Probes of strong-field gravity} 81 | %\item[ ] G.P.A.: 4.6/5.0 82 | \end{itemize} 83 | 84 | {\bf B.S., Physics,} California Institute of 85 | Technology, Pasadena, CA, USA \hfill {\bf June 2006}\\ 86 | \vspace*{-.1in} 87 | \begin{itemize} 88 | \item[ ] Degree conferred with honor. 89 | \item[ ] Senior Thesis Advisors: Dr.\ Patrick Sutton and Prof.\ Alan Weinstein 90 | %\item[ ] G.P.A.: ?.??/4.00 91 | \end{itemize} 92 | 93 | \section{Employment} 94 | {\bf Associate Professor,} University of Mississippi, Oxford, MS USA 95 | \hfill {\bf July 2024--Present}\\ 96 | \\ 97 | {\bf Assistant Professor,} University of Mississippi, Oxford, MS USA 98 | \hfill {\bf August 2018--June 2024}\\ 99 | \\ 100 | {\bf Senior Postdoctoral Researcher,} Caltech, Pasadena, CA USA 101 | \hfill {\bf September 2015--August 2018}\\ 102 | \\ 103 | {\bf NASA Einstein Fellow,} Cornell, Ithaca NY, USA 104 | \hfill {\bf September 2012--August 2015}\\ 105 | \\ 106 | {\bf Research and Teaching Assistant,} MIT, Cambridge MA, USA \hfill {\bf September 2006--May 2012}\\ 107 | \\ 108 | {\bf Teaching Assistant,} Caltech, Pasadena, CA, USA \hfill {\bf Fall 2004, Spring 2005}\\ 109 | \\ 110 | {\bf Summer Research Fellow,} Caltech, Pasadena, CA, USA \hfill {\bf June--September 2003/2005}\\ 111 | 112 | % Added to improve page breaks 113 | \vspace{-1em} 114 | 115 | \section{Research Interests} 116 | General relativity (GR), gravitation, and astrophysical phenomena which can 117 | elucidate gravity. 118 | One major theme is pushing numerical and analytical gravitational-wave 119 | (GW) predictions to the precision frontier in advance of 120 | next-generation observatories. 121 | A second major theme is using GWs to test GR against beyond-GR 122 | models, in both theory-independent and theory-dependent models. 123 | This involves numerical relativity and renormalization methods 124 | applied to specific effective field models for beyond-GR theories. 125 | 126 | \section{Honors and Awards} 127 | {\bf Kavli Fellow,} 128 | National Academy of Sciences, 129 | \hfill {\bf 2025}\\ 130 | \\ 131 | {\bf Sloan Research Fellowship,} 132 | Alfred P.\ Sloan Foundation, 133 | \hfill {\bf 2023--2025}\\ 134 | \\ 135 | {\bf CAREER Award,} NSF \hfill {\bf 2021--2026}\\ 136 | \\ 137 | {\bf Einstein Postdoctoral Fellow,} NASA \hfill {\bf 2012--2015}\\ 138 | \\ 139 | {\bf Henry Kendall Teaching Award,} Massachusetts Institute of Technology \hfill {\bf 2011}\\ 140 | \\ 141 | {\bf Upperclass Merit Scholarship,} California Institute of Technology \hfill {\bf 2005--2006}\\ 142 | 143 | % Added to improve page breaks 144 | %\vspace{-1em} 145 | 146 | \section{Teaching Experience} 147 | {\bf Professor}, University of Mississippi 148 | \vspace*{.05in} 149 | \begin{itemize} 150 | \item[ ] Phys.~213, General physics I \hfill {\bf Spring 2021} 151 | \item[ ] Phys.~401, Electromagnetism I \hfill {\bf Falls 2019--2022} 152 | \item[ ] Phys.~402, Electromagnetism II \hfill {\bf Springs 2019--2021} 153 | \item[ ] Phys.~436, Intro to cosmology \hfill {\bf Falls 2023, 2025} 154 | \item[ ] Phys.~463/4, Senior research project \hfill {\bf Fall 2020, 155 | Spring 2021, Fall 2023} 156 | \item[ ] Phys.~503/630, Graduate reading course \hfill {\bf Spring 2019, Falls 2020--2021} 157 | \item[ ] Phys.~709, Graduate classical dynamics I \hfill {\bf Fall 2018} 158 | \item[ ] Phys.~721, Graduate electrodynamics I \hfill {\bf Springs 2022--2025} 159 | \item[ ] Phys.~722, Graduate electrodynamics II \hfill {\bf Falls 2022--2025} 160 | \item[ ] Phys.~735, General relativity \hfill {\bf Fall 2024} 161 | \item[ ] Phys.~750, General relativity II \hfill {\bf Spring 2020} 162 | \end{itemize} 163 | %\newpage{} 164 | {\bf Guest Lecturer}, California Institute of Technology 165 | \vspace*{.05in} 166 | \begin{itemize} 167 | \item[ ] Ph236, General relativity \hfill {\bf Fall 2017} 168 | \item[ ] Ph237, Gravitational Waves \hfill {\bf Spring 2016} 169 | \end{itemize} 170 | {\bf Guest Lecturer}, Massachusetts Institute of Technology 171 | \vspace*{.05in} 172 | \begin{itemize} 173 | \item[ ] 8.901, Graduate Astrophysics I \hfill {\bf Spring 2011} 174 | \end{itemize} 175 | {\bf Teaching Assistant}, Massachusetts Institute of Technology 176 | \vspace*{.05in} 177 | \begin{itemize} 178 | \item[ ] 8.942, Cosmology \hfill {\bf Fall 2011} 179 | \item[ ] 8.901, Graduate Astrophysics I \hfill {\bf Spring 2011} 180 | \item[ ] 8.286, The Early Universe \hfill {\bf Fall 2009} 181 | \end{itemize} 182 | {\bf Teaching Assistant}, California Institute of Technology 183 | \vspace*{.05in} 184 | \begin{itemize} 185 | \item[ ] Ph 7, Nuclear and Quantum Physics Lab\hfill {\bf Spring 2005} 186 | \item[ ] Ph 5, Analog Electronics for Physicists \hfill {\bf Fall 2004} 187 | \end{itemize} 188 | 189 | \section{Mentoring/ Supervision} 190 | {\bf Postdoctoral researchers} 191 | \begin{itemize} 192 | \item[] Károly Csukás 193 | \hfill {\bf Fall 2021--Summer 2024} 194 | \item[] José Tomás Gálvez Ghersi 195 | \hfill {\bf Fall 2019--Spring 2021} 196 | \begin{itemize} 197 | \vspace{-.05in} 198 | \item[] Now faculty at Universidad de Ingeniería y Tecnología, Peru 199 | \vspace{-.05in} 200 | \end{itemize} 201 | \end{itemize} 202 | {\bf Graduate students} 203 | \begin{itemize} 204 | \item[] David Bronicki, University of Mississippi 205 | \hfill {\bf Fall 2019--Summer 2023} 206 | \item[] Subhayu Bagchi, University of Mississippi 207 | \hfill {\bf Fall 2019--present} 208 | \item[] Aniket Khairnar, University of Mississippi 209 | \hfill {\bf Fall 2019--present} 210 | \item[] Akshay Khadse, University of Mississippi 211 | \hfill {\bf Fall 2018--Summer 2024} 212 | \item[] Lorena Magaña Zertuche, University of Mississippi 213 | \hfill {\bf Fall 2018--Summer 2024} 214 | \begin{itemize} 215 | \vspace{-.05in} 216 | \item[] Now a postdoc at NBI, Copenhagen, Denmark 217 | \end{itemize} 218 | \item[] Joe Rivest, University of Mississippi 219 | \hfill {\bf Fall 2018--Summer 2024} 220 | \item[] Sashwat Tanay, University of Mississippi 221 | \hfill {\bf Fall 2018--Summer 2022} 222 | \begin{itemize} 223 | \vspace{-.05in} 224 | \item[] Now a postdoc at LUTH, Meudon, France 225 | \end{itemize} 226 | \item[] Maria (Masha) Okounkova, Caltech 227 | \hfill {\bf Fall 2015--Summer 2019} 228 | \begin{itemize} 229 | \vspace{-.05in} 230 | \item[] Now faculty at Pasadena City College 231 | \end{itemize} 232 | \item[] Baoyi Chen, Caltech 233 | \hfill {\bf Fall 2016--Summer 2018} 234 | \end{itemize} 235 | 236 | % 237 | %\newpage{} 238 | 239 | {\bf Undergraduate students} 240 | \begin{itemize} 241 | \item[] Wayne Zhao, Harvard 242 | \hfill {\bf Summer 2016} 243 | \begin{itemize} 244 | \vspace{-.05in} 245 | \item[] Now a graduate student at Princeton 246 | \end{itemize} 247 | \end{itemize} 248 | 249 | \section{Professional Activities, Outreach, and Service} 250 | {\bf LISA Consortium, Full member}\hfill{\bf 2020--Present} 251 | \begin{itemize} 252 | \item[] UMiss LISA Group leader\hfill{\bf 2020--Present} 253 | \end{itemize} 254 | {\bf Simulating eXtreme Spacetimes collaboration}\hfill{\bf 2015--Present} 255 | \begin{itemize} 256 | \item[] Executive committee member\hfill{\bf 2018--Present} 257 | \end{itemize} 258 | {\bf American Physical Society, member}\hfill{\bf 2010--Present} 259 | \begin{itemize} 260 | \item[] Division of Gravitational Physics 261 | \begin{itemize} 262 | \item[] Secretary/Treasurer\hfill{\bf 2023--2026} 263 | \item[] Executive Committee Member-at-Large\hfill{\bf 2016--2019} 264 | \end{itemize} 265 | \item[] Division of Astrophysics 266 | \end{itemize} 267 | {\bf Conference organizer} 268 | \vspace*{.05in} 269 | \begin{itemize} 270 | \item[] 271 | \href{https://indico.global/event/14228/} 272 | {Nonlinear Black Hole Perturbation Theory}, 273 | U of Nottingham 274 | \hfill {\bf September 2025}\\ 275 | \hspace*{1em} Three day workshop, $\sim 70$ participants 276 | \item[] 277 | \href{https://www.phy.olemiss.edu/gcgm11/} 278 | {11\textsuperscript{th} Gulf Coast Gravity Meeting (GCGM)}, 279 | UMiss 280 | \hfill {\bf April 2025}\\ 281 | \hspace*{1em} Two day conference, $\sim 50$ participants 282 | \item[] 283 | \href{https://icerm.brown.edu/topical_workshops/tw-24-ses/} 284 | {Simulating Extreme Spacetimes with SpEC and SpECTRE}, 285 | ICERM \hfill {\bf August 2024} \\ 286 | \hspace*{1em} Week-long international workshop, $\sim$85 participants 287 | \item[] 288 | \href{https://www.benasque.org/2024relativity/} 289 | {New frontiers in strong gravity}, 290 | Benasque, Spain \hfill {\bf July 2024} \\ 291 | \hspace*{1em} Two week international conference, $\sim$70 participants 292 | \item[] 293 | \href{https://pcts.princeton.edu/events/2023/nonlinear-aspects-general-relativity} 294 | {Nonlinear Aspects of General Relativity}, 295 | Princeton PCTS \hfill {\bf October 2023}\\ 296 | \hspace*{1em} Four day workshop, $\sim$100 participants 297 | \item[] 298 | \href{https://icerm.brown.edu/events/re-22-f20w1/} 299 | {Numerical Relativity Community Summer School}, 300 | ICERM \hfill {\bf August 2022} \\ 301 | \hspace*{1em} Week-long international summer school, 150 participants 302 | \item[] 303 | \href{https://www.benasque.org/2022relativity/} 304 | {New frontiers in strong gravity}, 305 | Benasque, Spain \hfill {\bf July 2022} \\ 306 | \hspace*{1em} Two week international conference, 100 participants 307 | \item[] 308 | \href{http://www.benasque.org/2018relativity/} 309 | {Numerical Relativity beyond General Relativity}, 310 | Benasque, Spain \hfill {\bf June 2018} \\ 311 | \hspace*{1em} Week-long international workshop, 59 participants 312 | \item[] 313 | 34\textsuperscript{th} Pacific Coast Gravity Meeting (PCGM), 314 | Caltech 315 | \hfill {\bf March 2018}\\ 316 | \hspace*{1em} Two day conference, $\sim 125$ participants 317 | \item[] 318 | \href{http://www.tapir.caltech.edu/~unifying-gr-tests/} 319 | {Unifying Tests of General Relativity}, 320 | Caltech \hfill {\bf July 2016} \\ 321 | \hspace*{1em} Three day workshop, 52 participants 322 | \end{itemize} 323 | {\bf Seminar organizer} 324 | \vspace*{.05in} 325 | \begin{itemize} 326 | \item[] TAPIR seminar, Caltech\hfill 327 | {\bf Fall 2015--Spring 2018} 328 | \item[] General Relativity Informal Tea-Time Series (GRITTS), MIT\hfill 329 | {\bf Fall 2011--Spring 2012} 330 | \item[] MKI Journal Club, MIT\hfill {\bf Fall 2007--Spring 2010} 331 | \end{itemize} 332 | {\bf Conference session chair; Judge for best student speaker award} 333 | \vspace*{.05in} 334 | \begin{itemize} 335 | \item[] 336 | April APS meeting, NY, NY 337 | \hfill {\bf April 2022} 338 | \item[] 339 | Midwest relativity meeting, Grand Rapids, MI 340 | \hfill {\bf October 2019} 341 | \item[] 342 | April APS meeting, Columbus, OH 343 | \hfill {\bf April 2018} 344 | \item[] 345 | 34\textsuperscript{th} Pacific Coast Gravity Meeting (PCGM), 346 | Caltech 347 | \hfill {\bf March 2018} 348 | \item[] 349 | 33\textsuperscript{rd} Pacific Coast Gravity Meeting (PCGM), 350 | UCSB 351 | \hfill {\bf March 2017} 352 | \item[] 353 | ``April'' APS meeting, Washington D.C. 354 | \hfill {\bf January 2017} 355 | \item[] 356 | 32\textsuperscript{nd} Pacific Coast Gravity Meeting (PCGM), 357 | CSU Fullerton 358 | \hfill {\bf April 2016} 359 | \item[] 360 | Theoretical Astrophysics in Southern California (TASC), 361 | CSU Fullerton 362 | \hfill {\bf November 2015} 363 | \end{itemize} 364 | 365 | {\bf Journal referee} 366 | \vspace*{.05in}\\ 367 | \hspace*{1em} 368 | American Journal of Physics, 369 | Classical and Quantum Gravity, 370 | Journal of Cosmology and Astroparticle Physics, 371 | Journal of Open Source Software, 372 | General Relativity and Gravitation, 373 | Monthly Notices of the Royal Astronomical Society, 374 | Physics Letters~B, 375 | Physical Review D, 376 | Physical Review Letters, 377 | Physical Review X, 378 | Reviews of Modern Physics, 379 | The Astrophysical Journal Letters, 380 | The~Physics~Teacher 381 | 382 | {\bf Agency work} 383 | \vspace*{.05in}\\ 384 | \hspace*{1em} 385 | Reviewer for NSF, NASA 386 | 387 | {\bf Outreach} 388 | \vspace*{.05in} 389 | \begin{itemize} 390 | 391 | \item[] Oxford Science Café 392 | \hfill {\bf April 2019} \\ 393 | \hspace*{1em} Lecture: ``The truth about black holes'' 394 | 395 | \item[] Guest on the {\it Starts With a Bang} podcast 396 | \hfill {\bf March 25, 2019} \\ 397 | \hspace*{1em} 398 | \href{https://soundcloud.com/ethan-siegel-172073460/starts-with-a-bang-42-black-holes-and-gravitation}{Episode 42: Black holes and gravitation} 399 | 400 | 401 | \item[] Invited speaker for Latin American Webinar on Physics 402 | \hfill {\bf March 13, 2019} \\ 403 | \hspace*{1em} \href{https://www.youtube.com/watch?v=7HO07-QtvMI} 404 | {Webinar 75: ``Testing Einstein with numerical relativity''} 405 | 406 | \item[] Caltech astronomy public lecture series speaker 407 | \hfill {\bf March 2018} \\ 408 | \hspace*{1em} Lecture: ``The truth about black holes'' 409 | 410 | \item[] Astronomy on Tap public lecture series speaker and volunteer 411 | \hfill {\bf 2016--2018} \\ 412 | \hspace*{1em} Close to a monthly basis 413 | 414 | \item[] Caltech astronomy public lecture series panelist and emcee 415 | \hfill {\bf 2016--2018} \\ 416 | \hspace*{1em} Approximately every three months 417 | 418 | \item[] Invited guest lecture on black holes and gravitational waves \hfill {\bf November 2017} \\ 419 | \hspace*{1em} {\it Science of Space and Time}, Hampshire College 420 | 421 | \item[] Invited video Q\&A session, public high school physics class \hfill {\bf June 2017} \\ 422 | \hspace*{1em} {\it The Nova Project} school, Seattle 423 | 424 | \item[] Guest on {\it The Titanium Physicists Podcast} \\ 425 | \hspace*{1em} 426 | \href{http://titaniumphysicists.brachiolopemedia.com/2019/08/21/episode-80-picturing-the-bach-hole-with-adal-rifai/}{Episode 427 | 80: Picturing the Bach Hole} 428 | \hfill 429 | {\bf August 21, 2019} \\ 430 | \hspace*{1em} \href{http://titaniumphysicists.brachiolopemedia.com/2016/04/25/episode-64-e-and-n-the-edges-of-einstein/}{Episode 64: The edges of Einstein} 431 | \hfill 432 | {\bf April 25, 2016} \\ 433 | \hspace*{1em} \href{http://titaniumphysicists.brachiolopemedia.com/2016/02/01/episode-62-black-bells-with-brent-knopf-and-matt-sheehy/}{Episode 62: Black Bells} 434 | \hfill 435 | {\bf February 1, 2016} \\ 436 | 437 | \item[] Quora \href{https://www.quora.com/session/Leo-C-Stein/1}{Q\&A Session} on gravitational waves and first detection 438 | \hfill {\bf February 17, 2016} \\ 439 | \hspace*{1em} 83.9k+ views, 20.8k+ followers 440 | 441 | \item[] Invited guest host, public screening of {\it COSMOS} with Q\&A, 442 | \hfill {\bf March/June 2014} \\ 443 | \hspace*{1em} Science Cabaret/Cornell 444 | \item[] Invited public talk at {\it Frontiers of Cornell Astronomy}, \hfill {\bf November 2013} \\ 445 | \hspace*{1em} Cornell Friends of Astronomy 446 | \item[] Invited video chat, {\it Topics in Physics} course, \hfill {\bf July 2013} \\ 447 | \hspace*{1em} Stanford Education Program for Gifted Youth 448 | \end{itemize} 449 | 450 | \section{Computer Skills} 451 | %{\bf Languages---}% 452 | Expert in {\sc Mathematica}, C/C++, Python, Bash. 453 | Proficient in Javascript. 454 | Experience in Haskell, Java, Julia. 455 | Expert at *nix and HPC. 456 | Markup languages: \LaTeX, HTML, CSS, Markdown. 457 | 458 | % {\bf Operating systems---}% 459 | % Mac OS, Linux/*nix. 460 | 461 | {\bf Software---}% 462 | Most contributions can be found at \url{https://github.com/duetosymmetry}. 463 | Member of the {\it Simulating eXtreme Spacetimes} (SXS) collaboration, 464 | contributor to the Spectral Einstein Code (SpEC). 465 | Member of the {\it Black Hole Perturbation Toolkit}. Author of 466 | {\tt qnm} python package (\url{https://github.com/duetosymmetry/qnm}). 467 | Core collaborator on {\sc xAct} (\url{http://xact.es}) abstract 468 | tensor calculus package for {\sc Mathematica}. Coauthor 469 | of {\sc xTerior} package for exterior differential geometry under 470 | {\sc xAct}. Co-maintainer of community contributions at 471 | \url{http://contrib.xact.es}. Developed 472 | \href{https://chrome.google.com/webstore/detail/arxiv-keys/fkjjdlbhliopfhgddlpoggpmpgjfaojd}{arXiv-keys} 473 | browser extension/add-on for Chrome/Firefox. 474 | Author of \href{https://ctan.org/pkg/orcidlink}{\tt orcidlink} and coauthor of \href{https://ctan.org/pkg/gridpapers}{\tt gridpapers} packages for \LaTeX. 475 | 476 | % Twiddle this for spacing 477 | % \newpage 478 | 479 | \ifx\nopubs\undefined 480 | \input{PubsContent.tex} 481 | \else 482 | % 483 | \fi 484 | 485 | \input{TalksContent.tex} 486 | 487 | %\newpage{} 488 | 489 | \section{References} 490 | \vspace*{.05in} 491 | \parbox{\textwidth}{% 492 | {\bf Scott~A.~Hughes,} Professor of Physics, Massachusetts Institute of Technology \\ 493 | 77 Massachusetts Avenue, Bldg.\ 37-602A \\ 494 | Cambridge, MA 02139 \\ 495 | email: \href{mailto:sahughes@mit.edu}{sahughes@mit.edu} \\ 496 | office phone: \href{tel:1-617-258-8523}{1-617-258-8523}} 497 | \par 498 | \parbox{\textwidth}{% 499 | {\bf Nico~Yunes,} Professor of Physics, University of Illinois\\ 500 | 249 Loomis Laboratory\\ 501 | 1110 West Green Street\\ 502 | Urbana, IL 61801-3003\\ 503 | email: \href{mailto:nyunes@illinois.edu}{nyunes@illinois.edu} \\ 504 | office phone: \href{tel:1-814-883-2069}{1-814-883-2069}} 505 | \par 506 | \parbox{\textwidth}{% 507 | {\bf {\'E}anna~{\'E}.~Flanagan,} Professor of Physics and Astronomy, 508 | Cornell University\\ 509 | 463 Physical Sciences Building\\ 510 | Ithaca, NY 14853\\ 511 | email: \href{mailto:eef3@cornell.edu}{eef3@cornell.edu}\\ 512 | office phone: \href{tel:1-607-255-6534}{1-607-255-6534}} 513 | \par 514 | \parbox{\textwidth}{% 515 | {\bf Yanbei~Chen,} Professor of Physics, 516 | California Institute of Technology\\ 517 | TAPIR 350-17, Caltech\\ 518 | 1200 E.\ California Boulevard\\ 519 | Pasadena, CA 91125\\ 520 | email: \href{mailto:yanbei@caltech.edu}{yanbei@caltech.edu} 521 | (please send correspondence to \href{mailto:joann@caltech.edu}{joann@caltech.edu}) 522 | \\ 523 | office phone: \href{tel:1-626-395-4258}{1-626-395-4258}} 524 | 525 | \end{resume} 526 | \end{document} 527 | 528 | % Local Variables: 529 | % mode: latex 530 | % End: 531 | -------------------------------------------------------------------------------- /PubsContent.tex: -------------------------------------------------------------------------------- 1 | \newcommand{\arxiv}[1]{[\href{http://arxiv.org/abs/#1}{arXiv:#1}]} 2 | % Citation counts last updated 2023-08-06 3 | \def\zero{0} 4 | \def\one{1} 5 | \newcommand{\citeCount}[1]{% 6 | \def\val{#1} 7 | \ifx\val\zero% 8 | \else% 9 | \ifx\val\one% 10 | (1~citation)% 11 | \else% 12 | (#1~citations)% 13 | \fi% 14 | \fi} 15 | 16 | % Comment out to show, uncomment to hide 17 | \renewcommand{\citeCount}[1]{} 18 | 19 | \newcounter{numPubs} 20 | \newcounter{pubCounter} 21 | 22 | \setcounter{numPubs}{70} 23 | \setcounter{pubCounter}{\value{numPubs}} 24 | 25 | % \section{Publications in Progress} 26 | % \secstartswithlist{}% 27 | % \begin{etaremune}[start=\value{pubCounter}] 28 | % \item 29 | % McNees,~R. 30 | % {\bf Stein,~L.~C.}, 31 | % (2019) 32 | % {\it Cosmological perturbations in dynamical Chern-Simons}. 33 | % \setcounter{pubCounter}{\value{enumi}} 34 | % \end{etaremune} 35 | 36 | %%%%%%%%%% 37 | %%%%%%%%%% 38 | %%% As of 2023-08-06 39 | %%%%%%%%%% 40 | %%%%%%%%%% 41 | \newif\ifshowpubsummary 42 | %%% Comment out the next line to omit the publication summary 43 | \showpubsummarytrue 44 | %%% 45 | \ifshowpubsummary 46 | \section{Publication Summary} 47 | {\bf h-index ---}% 48 | As of 2024-10-13: 62 (according to Google Scholar), or 55 (according 49 | to INSPIRE). Both include collaboration papers. 50 | 51 | {\bf Top five cited ---}% 52 | Excluding LIGO/Virgo collaboration papers. 53 | %Citation counts from Google Scholar. 54 | \begin{enumerate} 55 | \item 56 | Berti, E., (5 authors), {\bf Stein,~L.~C.}, (46 more authors) 57 | (2015) 58 | {\it Testing General Relativity with Present and Future 59 | Astrophysical Observations}, 60 | \href{http://dx.doi.org/10.1088/0264-9381/32/24/243001}{Class. Quantum Grav. {\bf 32} 243001} 61 | \arxiv{1501.07274}. 62 | \citeCount{1462} 63 | \item 64 | Barack,~L., {\it et al.} 65 | (2019) 66 | {\it Black holes, gravitational waves and fundamental physics: a roadmap}, 67 | \href{https://doi.org/10.1088/1361-6382/ab0587}{Class.~Quantum Grav.~{\bf 36} 143001} 68 | \arxiv{1806.05195}. 69 | \citeCount{763} 70 | \item 71 | Boyle,~M., {\it et al.} ({\bf LCS} is corresponding author) 72 | (2019) 73 | {\it The SXS Collaboration catalog of binary black hole simulations}, 74 | \href{https://doi.org/10.1088/1361-6382/ab34e2}{Class.~Quantum Grav.~{\bf 36} 195006} 75 | \arxiv{1904.04831}. 76 | \citeCount{400} 77 | \item 78 | Varma,~V, {\it et al.} 79 | (2019) 80 | {\it Surrogate models for precessing binary black hole simulations with 81 | unequal masses}, 82 | \href{https://doi.org/10.1103/PhysRevResearch.1.033015}{Phys.~Rev.~Research~{\bf 1},~033015} 83 | \arxiv{1905.09300}. 84 | \citeCount{374} 85 | \item 86 | Yunes,~N., {\bf Stein,~L.~C.} 87 | (2011), 88 | {\it Nonspinning black holes in alternative theories of gravity}, 89 | \href{http://dx.doi.org/10.1103/PhysRevD.83.104002}{Phys.~Rev.~D~{\bf 83}~104002} 90 | \arxiv{1101.2921}. 91 | \citeCount{330} 92 | \end{enumerate} 93 | \else% don't show pub summary 94 | \fi 95 | 96 | \renewcommand{\citeCount}[1]{} 97 | 98 | \section{Submitted Publications} 99 | \secstartswithlist{}% 100 | %\addtocounter{pubCounter}{-1}% 101 | \begin{etaremune}[start=\value{pubCounter}] 102 | \item 103 | Berti,~E. 104 | {\it et al.}, 105 | (2025) 106 | {\it Black hole spectroscopy: from theory to experiment}, 107 | \arxiv{2505.23895}. 108 | \citeCount{0} 109 | \setcounter{pubCounter}{\value{enumi}} 110 | \end{etaremune} 111 | 112 | \section{Accepted Publications} 113 | \secstartswithlist{}% 114 | \addtocounter{pubCounter}{-1}% 115 | \begin{etaremune}[start=\value{pubCounter}] 116 | \item 117 | De~Amicis,~M. 118 | (5 authors), 119 | {\bf Stein,~L.~C.}, 120 | (13 more authors) 121 | (2024) 122 | {\it Late-time tails in nonlinear evolutions of merging black holes}, 123 | \arxiv{2412.06887}. 124 | \citeCount{0} 125 | % 126 | \setcounter{pubCounter}{\value{enumi}} 127 | \end{etaremune} 128 | 129 | \section{Collaboration Publications} 130 | From 2008--2012, I was coauthor on 34 refereed LIGO and/or LIGO/Virgo 131 | collaboration publications. I only list short author-list publications below. 132 | 133 | \section{Refereed Publications} 134 | \secstartswithlist{}% 135 | \addtocounter{pubCounter}{-1}% 136 | \begin{etaremune}[start=\value{pubCounter}] 137 | \item 138 | Scheel,~M. 139 | (3 authors), 140 | {\bf Stein,~L.~C.}, 141 | (54 more authors) 142 | (2025) 143 | {\it The SXS Collaboration's third catalog of binary black hole simulations}, 144 | \href{https://doi.org/10.1088/1361-6382/adfd34}% 145 | {Class.~Quantum Grav.~{\bf 42} 195017}, 146 | \arxiv{2505.13378}. 147 | \citeCount{0} 148 | \item 149 | Magaña~Zertuche,~L., 150 | {\bf Stein,~L.~C.}, 151 | {\it et al.}, 152 | (2025) 153 | {\it High-Precision Ringdown Surrogate Model for Non-Precessing Binary Black Holes}, 154 | \href{https://doi.org/10.1103/q7sy-g3kl}% 155 | {Phys.~Rev.~D.~{\bf 112} 024077}, 156 | \arxiv{2408.05300}. 157 | \citeCount{0} 158 | \item 159 | Da~Re,~G., 160 | Mitman,~K., 161 | {\bf Stein,~L.~C.}, 162 | {\it et al.}, 163 | (2025) 164 | {\it Modeling the BMS transformation induced by a binary black hole merger}, 165 | \href{https://doi.org/10.1103/PhysRevD.111.124019}% 166 | {Phys.~Rev.~D.~{\bf 111} 124019}, 167 | \arxiv{2503.09569}. 168 | \citeCount{0} 169 | \item 170 | Mitman,~K., 171 | {\bf Stein,~L.~C.}, 172 | {\it et al.}, 173 | (2025) 174 | {\it Length dependence of waveform mismatch: a caveat on waveform accuracy}, 175 | \href{https://doi.org/10.1088/1361-6382/add8d9}% 176 | {Class.~Quantum Grav.~{\bf 42} 117001}, 177 | \arxiv{2502.14025}. 178 | \citeCount{0} 179 | \item 180 | Field,~S. 181 | {\it et al.}, 182 | (2025) 183 | {\it GWSurrogate: A Python package for gravitational wave surrogate models}, 184 | \href{https://doi.org/10.21105/joss.07073}{J.~Open~Source~Softw., 10(107), 7073}, 185 | \arxiv{2504.08839}. 186 | \citeCount{0} 187 | \item 188 | Witzany,~V. 189 | Skoupý,~V., 190 | {\bf Stein,~L.~C.}, 191 | Tanay,~S., 192 | (2025) 193 | {\it Actions of spinning compact binaries: Spinning particle in Kerr matched to dynamics at 1.5 post-Newtonian order}, 194 | \href{https://doi.org/10.1103/PhysRevD.111.044032}% 195 | {Phys.~Rev.~D.~{\bf 111} 044032}, 196 | \arxiv{2411.09742}. 197 | \citeCount{0} 198 | \item 199 | Khairnar,~A., 200 | {\bf Stein,~L.~C.}, 201 | Boyle,~M., 202 | (2025) 203 | {\it Approximate helical symmetry in compact binaries}, 204 | \href{https://doi.org/10.1103/PhysRevD.111.024072}% 205 | {Phys.~Rev.~D.~{\bf 111} 024072}, 206 | \arxiv{2410.16373}. 207 | \citeCount{0} 208 | \item 209 | Zhu,~H., 210 | (9 authors), 211 | {\bf Stein,~L.~C.}, 212 | (2024) 213 | {\it Imprints of Changing Mass and Spin on Black Hole Ringdown}, 214 | \href{https://doi.org/10.1103/PhysRevD.110.124028}% 215 | {Phys.~Rev.~D.~{\bf 110} 124028}, 216 | \arxiv{2404.12424}. 217 | \citeCount{0} 218 | \item 219 | Sun,~D., 220 | Boyle,~M., 221 | Mitman,~K., 222 | Scheel,~M.~A., 223 | {\bf Stein,~L.~C.}, 224 | Teukolsky,~S.~A., 225 | Varma,~V., 226 | (2024) 227 | {\it Optimizing post-Newtonian parameters and fixing the BMS frame for numerical-relativity waveform hybridizations}, 228 | \href{https://doi.org/10.1103/PhysRevD.110.104076}% 229 | {Phys.~Rev.~D.~{\bf 110} 104076}, 230 | \arxiv{2403.10278}. 231 | \citeCount{0} 232 | \item 233 | Mitman,~K., 234 | Boyle,~M., 235 | {\bf Stein,~L.~C.}, 236 | {\it et al.}, 237 | (2024) 238 | {\it A Review of Gravitational Memory and BMS Frame Fixing in Numerical Relativity}, 239 | \href{https://doi.org/10.1088/1361-6382/ad83c2}% 240 | {Class.~Quantum Grav.~{\bf 41} 223001}, 241 | \arxiv{2405.08868}. 242 | \citeCount{0} 243 | \item 244 | {\bf Stein,~L.~C.}, 245 | (2024) 246 | {\it Can a radiation gauge be horizon-locking?}, 247 | \href{https://doi.org/10.1088/1361-6382/ad563b}% 248 | {Class.~Quantum Grav.~{\bf 41} 157001} 249 | \arxiv{2404.10113}. 250 | \citeCount{0} 251 | \item 252 | Samanta,~R., 253 | Tanay,~S., 254 | {\bf Stein,~L.~C.}, 255 | (2023) 256 | {\it Closed-form solutions of spinning, eccentric binary black holes at 1.5 post-Newtonian order}, 257 | \href{https://doi.org/10.1103/PhysRevD.108.124039}% 258 | {Phys.~Rev.~D~{\bf 108},~124039} 259 | \arxiv{2210.01605}. 260 | \citeCount{2} 261 | \item 262 | Bronicki,~D., 263 | Cárdenas-Avendaño,~A., 264 | {\bf Stein,~L.~C.}, 265 | (2023) 266 | {\it Tidally-induced nonlinear resonances in EMRIs with an analogue model}, 267 | \href{https://doi.org/10.1088/1361-6382/acfcfe}% 268 | {Class.~Quantum Grav.~{\bf 40} 215015} 269 | \arxiv{2203.08841}. 270 | \citeCount{8} 271 | \item 272 | Yoo,~J., {\it et al.}, 273 | (2023) 274 | {\it Numerical relativity surrogate model with memory effects and post-Newtonian hybridization}, 275 | \href{https://doi.org/10.1103/PhysRevD.108.064027}% 276 | {Phys.~Rev.~D~{\bf 108},~064027} 277 | \arxiv{2306.03148}. 278 | \citeCount{1} 279 | \item 280 | Ma,~S., 281 | Varma,~V., 282 | {\bf Stein,~L.~C.}, 283 | {\it et al.} 284 | (2023) 285 | {\it Numerical simulations of black hole--neutron star mergers in scalar-tensor gravity}, 286 | \href{https://doi.org/10.1103/PhysRevD.107.124051}% 287 | {Phys.~Rev.~D~{\bf 107},~124051} 288 | \arxiv{2304.11836}. 289 | \citeCount{1} 290 | \item 291 | Tanay,~S., 292 | {\bf Stein,~L.~C.}, 293 | Cho,~G., 294 | (2023) 295 | {\it Action-angle variables of a binary black-hole with arbitrary eccentricity, spins, and masses at 1.5 post-Newtonian order}, 296 | \href{https://doi.org/10.1103/PhysRevD.107.103040}% 297 | {Phys.~Rev.~D~{\bf 107},~103040} 298 | \arxiv{2110.15351}. 299 | \citeCount{7} 300 | \item 301 | Grant,~A.~M., 302 | Saffer,~A., 303 | {\bf Stein,~L.~C.}, 304 | Tahura,~A., 305 | (2023) 306 | {\it Gravitational-wave energy and other fluxes in ghost-free bigravity}, 307 | \href{https://doi.org/10.1103/PhysRevD.107.044041}% 308 | {Phys.~Rev.~D~{\bf 107},~044041} 309 | \arxiv{2208.02123}. 310 | \citeCount{1} 311 | \item 312 | Mitman,~K., 313 | Lagos,~M., 314 | {\bf Stein,~L.~C.}, 315 | {\it et al.} 316 | (2023) 317 | {\it Nonlinearities in black hole ringdowns}, 318 | \href{https://doi.org/10.1103/PhysRevLett.130.081402}{Phys.~Rev.~Lett.~{\bf 130},~081402} 319 | \arxiv{2208.07380}. 320 | \raisebox{.15em}{\aldine} Editors' Suggestion, 321 | \href{https://physics.aps.org/articles/v16/29}{Featured in Physics}. 322 | \citeCount{46} 323 | \item 324 | Clark,~W.~A., 325 | Gomes,~M.~W., 326 | Rodriguez-Gonzalez,~A., 327 | {\bf Stein,~L.~C.}, 328 | Strogatz,~S.~H., 329 | (2023) 330 | {\it Surprises in a classic boundary-layer problem}, 331 | \href{https://doi.org/10.1137/21M1436087}% 332 | {SIAM Review 2023 65:1, 291-315} 333 | \arxiv{2107.11624}. 334 | \citeCount{1} 335 | \item 336 | Mitman,~K., 337 | {\bf Stein,~L.~C.}, 338 | Boyle,~M., {\it et al.} 339 | (2022) 340 | {\it Fixing the BMS Frame of Numerical Relativity Waveforms with BMS Charges}, 341 | \href{https://doi.org/10.1103/PhysRevD.106.084029}% 342 | {Phys.~Rev.~D~{\bf 106},~084029} 343 | \arxiv{2208.04356}. 344 | \citeCount{7} 345 | \item 346 | Okounkova,~M, 347 | Farr,~W.~M., 348 | Isi,~M., 349 | {\bf Stein,~L.~C.}, 350 | (2022) 351 | {\it Constraining gravitational wave amplitude birefringence and Chern-Simons gravity with GWTC-2}, 352 | \href{https://doi.org/10.1103/PhysRevD.106.044067}% 353 | {Phys.~Rev.~D~{\bf 106},~044067} 354 | \arxiv{2101.11153}. 355 | \citeCount{39} 356 | \item 357 | Magaña~Zertuche,~L., 358 | Mitman,~K., 359 | Khera,~N., 360 | {\bf Stein,~L.~C.}, 361 | et~al., 362 | (2022) 363 | {\it High Precision Ringdown Modeling: Multimode Fits and BMS Frames}, 364 | \href{https://doi.org/10.1103/PhysRevD.105.104015}% 365 | {Phys.~Rev.~D~{\bf 105},~104015} 366 | \arxiv{2110.15922}. 367 | \citeCount{27} 368 | \item 369 | Gálvez Ghersi,~J.~T., 370 | {\bf Stein,~L.~C.}, 371 | (2021) 372 | {\it Numerical renormalization group-based approach to secular perturbation theory}, 373 | \href{https://doi.org/10.1103/PhysRevE.104.034219}% 374 | {Phys.~Rev.~E~{\bf 104},~034219} 375 | \arxiv{2106.08410}. 376 | \citeCount{11} 377 | \item 378 | Mitman,~K., 379 | Khera,~N., 380 | Iozzo,~D.~A.~B., 381 | {\bf Stein,~L.~C.}, 382 | et~al., 383 | (2021) 384 | {\it Fixing the BMS frame of numerical relativity waveforms}, 385 | \href{https://doi.org/10.1103/PhysRevD.104.024051}% 386 | {Phys.~Rev.~D~{\bf 104},~024051} 387 | \arxiv{2105.02300}. 388 | \citeCount{17} 389 | \item 390 | Iozzo,~D.~A.~B., 391 | Khera,~N., 392 | {\bf Stein,~L.~C.}, 393 | et~al., 394 | (2021) 395 | {\it Comparing Remnant Properties from Horizon Data and Asymptotic Data in Numerical Relativity}, 396 | \href{https://doi.org/10.1103/PhysRevD.103.124029}% 397 | {Phys.~Rev.~D~{\bf 103},~124029} 398 | \arxiv{2104.07052}. 399 | \citeCount{15} 400 | \item 401 | Tahura,~S., 402 | Nichols,~D.~A., 403 | Saffer,~A., 404 | {\bf Stein,~L.~C.}, 405 | Yagi,~K. 406 | (2020) 407 | {\it Brans-Dicke theory in Bondi-Sachs form: Asymptotically flat solutions, asymptotic symmetries and gravitational-wave memory effects}, 408 | \href{https://doi.org/10.1103/PhysRevD.103.104026}% 409 | {Phys.~Rev.~D~{\bf 103},~104026} 410 | \arxiv{2007.13799}. 411 | \citeCount{27} 412 | \item 413 | Tanay,~S., 414 | {\bf Stein,~L.~C.}, 415 | Gálvez~Ghersi,~J.~T., 416 | (2020) 417 | {\it Integrability of eccentric, spinning black hole binaries up to second post-Newtonian order}, 418 | \href{https://doi.org/10.1103/PhysRevD.103.064066}% 419 | {Phys.~Rev.~D~{\bf 103},~064066} 420 | \arxiv{2012.06586}. 421 | \citeCount{13} 422 | \item 423 | Gálvez~Ghersi,~J.~T., 424 | {\bf Stein,~L.~C.}, 425 | (2020) 426 | {\it A fixed point for black hole distributions}, 427 | \href{https://doi.org/10.1088/1361-6382/abcfd2} 428 | {Class.~Quantum Grav.~{\bf 38} 045012} 429 | \arxiv{2007.11578}. 430 | \citeCount{6} 431 | \item 432 | Okounkova,~M., 433 | {\bf Stein,~L.~C.}, 434 | Moxon,~J., 435 | Scheel,~M.~A., 436 | Teukolsky,~S.~A., 437 | (2020) 438 | {\it Numerical relativity simulation of GW150914 beyond general relativity}, 439 | \href{https://doi.org/10.1103/PhysRevD.101.104016}{Phys.~Rev.~D~{\bf 101},~104016} 440 | \arxiv{1911.02588}. 441 | \citeCount{73} 442 | \item 443 | {\bf Stein,~L.~C.}, 444 | Warburton,~N., 445 | (2020) 446 | {\it Location of the last stable orbit in Kerr spacetime}, 447 | \href{https://doi.org/10.1103/PhysRevD.101.064007}{Phys.~Rev.~D~{\bf 101},~064007} 448 | \arxiv{1912.07609}. 449 | \citeCount{34} 450 | \item 451 | Okounkova,~M., 452 | {\bf Stein,~L.~C.}, 453 | Scheel,~M.~A., 454 | Teukolsky,~S.~A., 455 | (2019) 456 | {\it Numerical binary black hole collisions in dynamical Chern-Simons gravity}, 457 | \href{https://doi.org/10.1103/PhysRevD.100.104026}{Phys.~Rev.~D~{\bf 100},~104026} 458 | \arxiv{1906.08789}. 459 | \citeCount{82} 460 | \item 461 | Varma,~V, {\it et al.} 462 | (2019) 463 | {\it Surrogate models for precessing binary black hole simulations with 464 | unequal masses}, 465 | \href{https://doi.org/10.1103/PhysRevResearch.1.033015}{Phys.~Rev.~Research~{\bf 1},~033015} 466 | \arxiv{1905.09300}. 467 | \citeCount{205} 468 | \item 469 | {\bf Stein,~L.~C.}, 470 | (2019) 471 | \hspace{0.1em} 472 | {\it {\tt qnm:} A Python package for calculating Kerr quasinormal modes, separation constants, and spherical-spheroidal mixing coefficients}, 473 | \href{https://doi.org/10.21105/joss.01683}{J.~Open~Source~Softw., 4(42), 1683} 474 | \arxiv{1908.10377}. 475 | \citeCount{43} 476 | \item 477 | Boyle,~M., {\it et al.} ({\bf LCS} is corresponding author) 478 | (2019) 479 | {\it The SXS Collaboration catalog of binary black hole simulations}, 480 | \href{https://doi.org/10.1088/1361-6382/ab34e2}{Class.~Quantum Grav.~{\bf 36} 195006} 481 | \arxiv{1904.04831}. 482 | \citeCount{245} 483 | \item 484 | Barack,~L., {\it et al.} 485 | (2019) 486 | {\it Black holes, gravitational waves and fundamental physics: a roadmap}, 487 | \href{https://doi.org/10.1088/1361-6382/ab0587}{Class.~Quantum Grav.~{\bf 36} 143001} 488 | \arxiv{1806.05195}. 489 | \citeCount{592} 490 | \item 491 | Varma,~V., {\bf Stein,~L.~C.}, Gerosa,~D., 492 | (2019) 493 | {\it The binary black hole explorer: on-the-fly visualizations of precessing binary black holes}, 494 | \href{https://doi.org/10.1088/1361-6382/ab0ee9}{Class.~Quantum Grav.~{\bf 36} 095007} 495 | \arxiv{1811.06552}, 496 | [\href{https://vijayvarma392.github.io/binaryBHexp/}{project~website}]. 497 | \citeCount{2} 498 | \item 499 | Varma,~V., Gerosa,~D., {\bf Stein,~L.~C.}, H\'ebert,~F., Zhang,~H., 500 | (2019) 501 | {\it High-accuracy mass, spin, and recoil predictions of generic black-hole merger remnants}, 502 | \href{https://doi.org/10.1103/PhysRevLett.122.011101}{Phys.~Rev.~Lett.~{\bf 122},~011101} 503 | \arxiv{1809.09125}. 504 | \citeCount{92} 505 | \item 506 | Isi,~M., {\bf Stein,~L.~C.} 507 | (2018) 508 | {\it Measuring stochastic gravitational-wave energy beyond general relativity}, 509 | \href{https://doi.org/10.1103/PhysRevD.98.104025}{Phys.~Rev.~D~{\bf 98},~104025} 510 | \arxiv{1807.02123}. 511 | \citeCount{26} 512 | \item 513 | Prabhu,~K., {\bf Stein,~L.~C.} 514 | (2018) 515 | {\it Black hole scalar charge from a topological horizon integral in 516 | Einstein-dilaton-Gauss-Bonnet gravity}, 517 | \href{https://doi.org/10.1103/PhysRevD.98.021503}{Phys.~Rev.~D~{\bf 98},~021503(R)} 518 | (Rapid Communication) 519 | \arxiv{1805.02668}. 520 | \citeCount{46} 521 | \item 522 | Gerosa,~D., H\'ebert,~F., {\bf Stein,~L.~C.} 523 | (2018) 524 | {\it Black-hole kicks from numerical-relativity surrogate models}, 525 | \href{https://doi.org/10.1103/PhysRevD.97.104049}{Phys.~Rev.~D~{\bf 97},~104049} 526 | \arxiv{1802.04276}. 527 | \citeCount{45} 528 | \item 529 | Chen,~B., {\bf Stein,~L.~C.} 530 | (2018) 531 | {\it Deformation of extremal black holes from stringy interactions}, 532 | \href{https://doi.org/10.1103/PhysRevD.97.084012}{Phys.~Rev.~D~{\bf 97},~084012} 533 | \arxiv{1802.02159}. 534 | \citeCount{17} 535 | \item 536 | Chen,~B., {\bf Stein,~L.~C.} 537 | (2017) 538 | {\it Separating metric perturbations in near-horizon extremal Kerr}, 539 | \href{https://doi.org/10.1103/PhysRevD.96.064017}{Phys.~Rev.~D~{\bf 96},~064017} 540 | \arxiv{1707.05319}. 541 | \citeCount{8} 542 | \item 543 | Okounkova,~M., 544 | {\bf Stein,~L.~C.}, 545 | Scheel,~M.~A., 546 | Hemberger,~D.~A. 547 | (2017) 548 | {\it Numerical binary black hole mergers in dynamical Chern-Simons: 549 | I. Scalar field}, 550 | \href{https://doi.org/10.1103/PhysRevD.96.044020}{Phys.~Rev.~D~{\bf 96},~044020} 551 | \arxiv{1705.07924}. 552 | \citeCount{111} 553 | \item 554 | Tso,~R., Isi,~M., Chen,~Y., {\bf Stein,~L.~C.} 555 | (2017) 556 | {\it Modeling the Dispersion and Polarization Content of 557 | Gravitational Waves for Tests of General Relativity}, 558 | \href{http://dx.doi.org/10.1142/9789813148505_0052}{CPT and Lorentz Symmetry: pp.~205--208} 559 | \arxiv{1608.01284}. 560 | \citeCount{5} 561 | \item 562 | McNees,~R., {\bf Stein,~L.~C.}, Yunes,~N. 563 | (2016) 564 | {\it Extremal Black Holes in Dynamical Chern-Simons Gravity}, 565 | \href{http://dx.doi.org/10.1088/0264-9381/33/23/235013}{Class.~Quantum Grav.~{\bf 33} 235013} 566 | \arxiv{1512.05453}. 567 | \citeCount{44} 568 | \item 569 | Flanagan,~\'E.~\'E., Nichols,~D.~A., {\bf Stein,~L.~C.}, Vines,~J. 570 | (2016) 571 | {\it Prescriptions for Measuring and Transporting Local Angular 572 | Momenta in General Relativity}, 573 | \href{http://dx.doi.org/10.1103/PhysRevD.93.104007}{Phys.~Rev.~D~{\bf 93},~104007} 574 | \arxiv{1602.01847}. 575 | \citeCount{12} 576 | \item 577 | Yagi,~K., {\bf Stein,~L.~C.} 578 | (2016) 579 | {\it Black Hole Based Tests of General Relativity}, 580 | \href{http://dx.doi.org/10.1088/0264-9381/33/5/054001}{Class.~Quantum Grav.~{\bf 33} 054001} 581 | \arxiv{1602.02413}. 582 | \citeCount{163} 583 | \item 584 | Yagi,~K., {\bf Stein,~L.~C.}, Yunes, N. 585 | (2016) 586 | {\it Challenging the Presence of Scalar Charge and Dipolar Radiation 587 | in Binary Pulsars}, 588 | \href{http://dx.doi.org/doi:10.1103/PhysRevD.93.024010}{Phys.~Rev.~D~{\bf 93}~024010} 589 | \arxiv{1510.02152}. 590 | \citeCount{112} 591 | \item 592 | Berti, E., (5 authors), {\bf Stein,~L.~C.}, (46 more authors) 593 | (2015) 594 | {\it Testing General Relativity with Present and Future 595 | Astrophysical Observations}, 596 | \href{http://dx.doi.org/10.1088/0264-9381/32/24/243001}{Class. Quantum Grav. {\bf 32} 243001} 597 | \arxiv{1501.07274}. 598 | \citeCount{1279} 599 | \item 600 | Tsang,~D., Galley,~C.~R., {\bf Stein,~L.~C.}, Turner,~A. 601 | (2015) 602 | {\it ``Slimplectic'' Integrators: Variational Integrators for General Nonconservative Systems}, 603 | \href{http://dx.doi.org/10.1088/2041-8205/809/1/L9}{ApJ {\bf 809} L9} 604 | \arxiv{1506.08443}. 605 | \citeCount{30} 606 | \item 607 | Yagi,~K., {\bf Stein,~L.~C.}, Pappas,~G., Yunes,~N., Apostolatos,~T. 608 | (2014) 609 | {\it Why I-Love-Q: Explaining why universality emerges in compact objects}, 610 | \href{http://dx.doi.org/10.1103/PhysRevD.90.063010}{Phys.~Rev.~D~{\bf 90}~063010} 611 | \arxiv{1406.7587}. 612 | \citeCount{72} 613 | \item 614 | {\bf Stein,~L.~C.} 615 | (2014) 616 | {\it Rapidly rotating black holes in dynamical Chern-Simons gravity: 617 | Decoupling limit solutions and breakdown}, 618 | \href{http://dx.doi.org/10.1103/PhysRevD.90.044061}{Phys.~Rev.~D~{\bf 90}~044061} 619 | \arxiv{1407.2350}. 620 | \citeCount{43} 621 | \item 622 | {\bf Stein,~L.~C.}, Yagi,~K., Yunes,~N. 623 | (2014) 624 | {\it Three-Hair Newtonian Relations for Rotating Stars}, 625 | \href{http://dx.doi.org/10.1088/0004-637X/788/1/15}{ApJ~{\bf 788}~15} 626 | \arxiv{1312.4532}. 627 | \citeCount{59} 628 | \item 629 | {\bf Stein,~L.~C.}, Yagi,~K. 630 | (2014) 631 | {\it Parameterizing and constraining scalar corrections to general relativity}, 632 | \href{http://dx.doi.org/10.1103/PhysRevD.89.044026}{Phys.~Rev.~D~{\bf 89}~044026} 633 | \arxiv{1310.6743}. 634 | \citeCount{29} 635 | \item 636 | Yagi,~K., {\bf Stein,~L.~C.}, Yunes,~N., Tanaka,~T. 637 | (2013) 638 | {\it Isolated and Binary Neutron Stars in Dynamical Chern-Simons Gravity}, 639 | \href{http://dx.doi.org/10.1103/PhysRevD.87.084058}{Phys.~Rev.~D~{\bf 87}~084058} 640 | \arxiv{1302.1918}. 641 | \citeCount{89} 642 | \item 643 | Yagi,~K., {\bf Stein,~L.~C.}, Yunes,~N., Tanaka,~T. 644 | (2012), 645 | {\it Post-Newtonian, Quasi-Circular Binary Inspirals in Quadratic Modified Gravity}, 646 | \href{http://dx.doi.org/10.1103/PhysRevD.85.064022}{Phys.~Rev.~D~{\bf 85}~064022} 647 | \arxiv{1110.5950}. 648 | \citeCount{175} 649 | \item 650 | Vigeland,~S., Yunes,~N., {\bf Stein,~L.~C.} 651 | (2011), 652 | {\it Bumpy black holes in alternative theories of gravity}, 653 | \href{http://dx.doi.org/10.1103/PhysRevD.83.104027}{Phys.~Rev.~D~{\bf 83}~104027} 654 | \arxiv{1102.3706}. 655 | \citeCount{141} 656 | \item 657 | Yunes,~N., {\bf Stein,~L.~C.} 658 | (2011), 659 | {\it Nonspinning black holes in alternative theories of gravity}, 660 | \href{http://dx.doi.org/10.1103/PhysRevD.83.104002}{Phys.~Rev.~D~{\bf 83}~104002} 661 | \arxiv{1101.2921}. 662 | \citeCount{202} 663 | \item 664 | {\bf Stein,~L. C.}, Yunes,~N. 665 | (2011), 666 | {\it Effective gravitational wave stress-energy tensor in 667 | alternative theories of gravity}, 668 | \href{http://dx.doi.org/10.1103/PhysRevD.83.064038}{Phys.~Rev.~D~{\bf 83}~064038} 669 | \arxiv{1012.3144}. 670 | \citeCount{62} 671 | \item 672 | Lutomirski,~A., Tegmark,~M., Sanchez,~N.~J., {\bf 673 | Stein,~L.~C.}, Urry,~W.~L., Zaldarriaga,~M. 674 | (2011), 675 | {\it Solving the corner-turning problem for large interferometers}, 676 | \href{http://dx.doi.org/10.1111/j.1365-2966.2010.17587.x}{MNRAS~{\bf 410}~2075} 677 | \arxiv{0910.1351}. 678 | \citeCount{9} 679 | \item 680 | Sutton,~P., Jones,~G., Chatterji,~S., Kalmus,~P., Leonor,~I., 681 | Poprocki,~S., Rollins,~J., Searle,~A., {\bf Stein,~L.}, Tinto,~M., 682 | Was,~M. 683 | (2010), 684 | {\it X-Pipeline: an analysis package for autonomous 685 | gravitational-wave burst searches}, 686 | \href{http://dx.doi.org/10.1088/1367-2630/12/5/053034}{New~J.~Phys.~{\bf 12}~053034} 687 | \arxiv{0908.3665}. 688 | \citeCount{130} 689 | \item 690 | Chatterji,~S., Lazzarini,~A., {\bf Stein,~L.}, Sutton,~P., 691 | Searle,~A. 692 | (2006), 693 | {\it Coherent network analysis technique for 694 | discriminating gravitational-wave bursts from instrumental noise},\\ 695 | \href{http://dx.doi.org/10.1103/PhysRevD.74.082005}{Phys.~Rev.~D~{\bf 74}~082005} 696 | \arxiv{gr-qc/0605002}. 697 | \citeCount{113} 698 | \setcounter{pubCounter}{\value{enumi}} 699 | \end{etaremune} 700 | 701 | \section{Unrefereed Publications} 702 | \secstartswithlist{}% 703 | \addtocounter{pubCounter}{-1}% 704 | \begin{etaremune}[start=\value{pubCounter}] 705 | \item 706 | Galley,~C.~R., Tsang,~D., {\bf Stein,~L.~C.} 707 | (2014) 708 | {\it The principle of stationary nonconservative action for 709 | classical mechanics and field theories}, 710 | \arxiv{1412.3082}. 711 | \citeCount{39} 712 | \item 713 | {\bf Stein,~L.~C.} 714 | (2014), 715 | {\it Note on Legendre decomposition of the Pontryagin density in Kerr}, 716 | \arxiv{1407.0744}. 717 | \citeCount{7} 718 | \item 719 | {\bf Stein,~L.~C.} 720 | (2012), 721 | {\it Probes of Strong-field Gravity}, Ph.D. thesis at Massachusetts 722 | Institute of Technology 723 | [\href{http://hdl.handle.net/1721.1/77256}{hdl:1721.1/77256}]. 724 | \item 725 | Betancourt,~M., {\bf Stein,~L.~C.} 726 | (2011) 727 | {\it The Geometry of Hamiltonian Monte Carlo}, 728 | \arxiv{1112.4118}. 729 | \citeCount{14} 730 | \item 731 | {\bf Stein,~L.~C.} 732 | (2009), 733 | {\it Binary Inspiral Gravitational Waves from a Post-Newtonian Expansion}, 734 | Contribution to the Wolfram Demonstrations Project, 735 | \url{http://demonstrations.wolfram.com/BinaryInspiralGravitationalWavesFromAPostNewtonianExpansion/} 736 | \item 737 | {\bf Stein,~L.~C.} 738 | (2006), 739 | {\it Gravitational Wave Burst Source Localization in a Coherent 740 | Network Analysis}, 741 | Senior thesis at California Institute of Technology 742 | \end{etaremune} 743 | 744 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 745 | 746 | % Local Variables: 747 | % mode: latex 748 | % TeX-master: "LeoCStein.tex" 749 | % End: 750 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ![LaTeX build](../../workflows/LaTeX%20build/badge.svg) 3 | [![Latest build of LeoCStein.pdf](https://img.shields.io/badge/LeoCStein.pdf-latest-orange.svg?style=flat)](../gh-action-result/pdflatex/LeoCStein.pdf) 4 | [![Latest build of LeoCStein-NoPubs.pdf](https://img.shields.io/badge/LeoCStein--NoPubs.pdf-latest-orange.svg?style=flat)](../gh-action-result/pdflatex/LeoCStein-NoPubs.pdf) 5 | [![Latest build of LeoCStein-PubsOnly.pdf](https://img.shields.io/badge/LeoCStein--PubsOnly.pdf-latest-orange.svg?style=flat)](../gh-action-result/pdflatex/LeoCStein-PubsOnly.pdf) 6 | 7 | # Leo's curriculum vitae LaTeX source 8 | 9 | Please feel free to clone this repo if you like the style and want to use it for your CV. If you're going to customize it, you need to know the layout of the contents: 10 | - [LeoCStein.tex](LeoCStein.tex): The top-level file. Compiling this 11 | gives the full CV. However the sources for list of publications, 12 | list of talks, and contact info are in other files (listed below). 13 | - [LeoCStein-NoPubs.tex](LeoCStein-NoPubs.tex): Another top-level file, which just sets a flag and includes the above. Generates a CV without pub list. 14 | - [LeoCStein-PubsOnly.tex](LeoCStein-PubsOnly.tex): Another top-level file. Generates just a publication list (with contact info header). 15 | 16 | The following files are included by the above (they can not be compiled by themselves): 17 | - [ContactContent.tex](ContactContent.tex): Contains the contact info header with physical address, email address, web site, office phone 18 | - [PubsContent.tex](PubsContent.tex): Contains list of publications, 19 | - [TalksContent.tex](TalksContent.tex): Contains list of talks. 20 | 21 | If you're going to use this repo as a starting point for your own CV, you'll probably have to change a bunch of filenames. 22 | If you're going to keep it on github and want the github action that builds the PDFs (badge links above) to work, then you'll want to change the corresponding file names in the [.github/workflows/pdflatex.yml](.github/workflows/pdflatex.yml) workflow file. 23 | -------------------------------------------------------------------------------- /TalksContent.tex: -------------------------------------------------------------------------------- 1 | %\newcommand{\playsymbol}{\framebox[1.3\width]{$\blacktriangleright$}} 2 | \newcommand{\playsymbol}{$\blacktriangleright$} 3 | \section{Invited Talks} 4 | \secstartswithlist{}% 5 | \begin{etaremune} 6 | \item 7 | Natl. U. of Singapore, ``Math. Methods for the GR Two-body Problem'' workshop 8 | \hfill{} 9 | August 2025 10 | \item 11 | URI physics department colloquium 12 | \hfill{} 13 | November 2024 14 | \item 15 | UNC physics department colloquium 16 | \hfill{} 17 | February 2024 18 | \item 19 | UIUC astrophysics seminar 20 | \hfill{} 21 | December 2023 22 | \item 23 | Harvard CMSA GR seminar 24 | \hfill{} 25 | October 2023 26 | \item 27 | UMass Amherst, Amherst Center for Fundamental Interactions seminar 28 | \hfill{} 29 | September 2023 30 | \item 31 | Albert Einstein Institute, 32 | ``Connecting the Dots'' panel discussion 33 | \hfill{} 34 | June 2023 35 | \item 36 | Queen Mary Univ. of London, 37 | Gravitational memory workshop 38 | \hfill{} 39 | June 2023 40 | \item 41 | Utah State University, Theoretical Physics Talks, 42 | \hfill{} 43 | March 2023 44 | \item 45 | Iowa State, Physics and astronomy department colloquium, 46 | \hfill{} 47 | October 2022 48 | \item 49 | UT Austin, Weinberg Institute seminar, 50 | \hfill{} 51 | October 2022 52 | \item 53 | Vanderbilt, Physics and astronomy department colloquium, 54 | \hfill{} 55 | September 2022 56 | \item 57 | ICERM, Advances in CS Classical and Quantum Gravity, 58 | \hfill{} 59 | May 2022 60 | \item 61 | Flatiron CCA, Ringdown workshop, invited overview talk, 62 | \hfill{} 63 | February 2022 64 | \item 65 | DAMTP (University of Cambridge), HEP/GR colloquium, 66 | \hfill{} 67 | January 2022 68 | \item 69 | SISSA, Current challenges in gravitational physics workshop, 70 | \hfill{} 71 | April 2021 72 | \item 73 | Flatiron CCA, Gravitational wave astronomy group seminar, 74 | \hfill{} 75 | January 2021 76 | \item 77 | University of Birmingham, astrophysics seminar 78 | \hfill{} 79 | September 2020 80 | \item 81 | Albert Einstein Institute, ACR division seminar 82 | \hfill{} 83 | July 2020 84 | \item 85 | Black Hole Perturbation Toolkit, Spring 2020 workshop 86 | \hfill{} 87 | May 2020 88 | \item 89 | American Physical Society Meeting 90 | \hfill{} 91 | April 2020 92 | \item 93 | UVA, physics department colloquium 94 | \hfill{} 95 | November 2019 96 | \item 97 | UT Dallas, physics department colloquium 98 | \hfill{} 99 | October 2019 100 | \item 101 | Northwestern University, CIERA astrophysics seminar 102 | \hfill{} 103 | May 2019 104 | \item 105 | ETH-ITS Zurich, ``New horizons for gravity'' workshop 106 | \hfill{} 107 | May 2018 108 | \item 109 | UC San Diego, astrophysics seminar 110 | \hfill{} 111 | March 2018 112 | \item 113 | UC Berkeley, 4D particle physics seminar 114 | \hfill{} 115 | March 2018 116 | \item 117 | Kyoto University, YKIS2018a Symposium 118 | \hfill{} 119 | February 2018 120 | \item 121 | Oakland University physics seminar 122 | \hfill{} 123 | February 2018 124 | \item 125 | University of Wisconsin-Milwaukee gravity seminar 126 | \hfill{} 127 | January 2018 128 | \item 129 | Caltech/JPL Gravitational-Wave (CaJAGWR) seminar 130 | \hfill{} 131 | January 2018 132 | \item 133 | ICN UNAM, 134 | Relativity seminar 135 | \hfill{} 136 | December~2017 137 | \item 138 | University of Mississippi, 139 | Astrophysics seminar 140 | \hfill{} 141 | November~2017 142 | \item 143 | University of Florida, 144 | Astrophysics seminar 145 | \hfill{} 146 | November~2017 147 | \item 148 | University of Nottingham, 149 | Mathematical Physics seminar 150 | \hfill{} 151 | July~2017 152 | \item 153 | Sapienza University of Rome, 154 | New Frontiers in Gravitational-Wave Astrophysics 155 | \hfill{} 156 | June~2017 157 | \item 158 | Rochester Institute of Technology, 159 | CCRG seminar 160 | \hfill{} 161 | March~2017 162 | \item 163 | Penn State, 164 | IGC seminar 165 | \hfill{} 166 | March~2017 167 | \item 168 | University of Mississippi, 169 | Strong Gravity/Binary Dynamics workshop 170 | \hfill{} 171 | February/March~2017 172 | \item 173 | SUNY Stony Brook, 174 | ``The universe through gravitational waves'' 175 | \hfill{} 176 | December~2016 177 | \item 178 | University of Pennsylvania, 179 | New Frontiers in Gravitational Radiation workshop 180 | \hfill{} 181 | December~2016 182 | \item 183 | Cambridge MA, 184 | Event Horizon Telescope collaboration meeting 185 | \hfill{} 186 | November/December~2016 187 | \item 188 | Northwestern University CIERA, 189 | ``Fellows at the Frontiers'' 190 | \hfill{} 191 | August/September~2016 192 | \item 193 | Princeton University, 194 | GR@100++ panel discussion 195 | \hfill{} 196 | April 2016 197 | \item 198 | Cambridge MA, 199 | Einstein fellows symposium 200 | \hfill{} 201 | October 2014 202 | \item 203 | Perimeter Institute, 204 | Strong gravity seminar 205 | \hfill{} 206 | October 2014 207 | \item 208 | Cornell University, 209 | Friends of astronomy outreach event 210 | \hfill{} 211 | November 2013 212 | \item 213 | Cambridge MA, 214 | Einstein fellows symposium 215 | \hfill{} 216 | October 2013 217 | \item 218 | SUNY Geneseo, 219 | Physics colloquium 220 | \hfill{} 221 | October 2013 222 | \item 223 | University of Maryland, 224 | UMD gravity seminar 225 | \hfill{} 226 | October 2013 227 | \item 228 | Yale University, 229 | YCAA seminar 230 | \hfill{} 231 | September 2013 232 | \item 233 | Kyoto University, 234 | YITP long-term workshop 235 | \hfill{} 236 | June 2013 237 | \item 238 | Cambridge MA, 239 | Einstein fellows symposium 240 | \hfill{} 241 | October 2012 242 | \item 243 | Cornell University, 244 | Relativity lunch 245 | \hfill{} 246 | November 2011 247 | \end{etaremune} 248 | 249 | \section{Contributed Talks (selected)} 250 | \secstartswithlist{}% 251 | \begin{etaremune} 252 | \item 253 | 28$^{th}$ Capra Meeting on Radiation Reaction in General Relativity 254 | \hfill{} 255 | July 2025 256 | \item 257 | 24$^{th}$ International meeting on GR (GR24) 258 | \hfill{} 259 | July 2025 260 | \item 261 | American Physical Society Meeting 262 | \hfill{} 263 | April 2024 264 | \item 265 | American Physical Society Meeting 266 | \hfill{} 267 | April 2023 268 | \item 269 | LISA Symposium XIV 270 | \hfill{} 271 | July 2022 272 | \item 273 | American Physical Society Meeting 274 | \hfill{} 275 | April 2021 276 | \item 277 | American Physical Society Meeting 278 | \hfill{} 279 | April 2019 280 | \item 281 | American Physical Society Meeting 282 | \hfill{} 283 | April 2018 284 | \item 285 | Pacific Coast Gravity Meeting 286 | \hfill{} 287 | March 2017 288 | \item 289 | American Physical Society Meeting 290 | \hfill{} 291 | \sout{April} January 2017 292 | \item 293 | Testing Gravity 2017 294 | \hfill{} 295 | January 2017 296 | \item 297 | 21$^{st}$ International meeting on GR (GR21) 298 | \hfill{} 299 | July 2016 300 | \item 301 | American Physical Society Meeting 302 | \hfill{} 303 | April 2016 304 | \item 305 | Eastern Gravity Meeting 306 | \hfill{} 307 | May 2015 308 | \item 309 | American Physical Society Meeting 310 | \hfill{} 311 | April 2015 312 | \item 313 | NEB 16 Recent developments in gravity 314 | \hfill{} 315 | September 2014 316 | \item 317 | American Physical Society Meeting 318 | \hfill{} 319 | April 2014 320 | \item 321 | XXVII Texas symposium on relativistic astrophysics 322 | \hfill{} 323 | December 2013 324 | \item 325 | 20$^{th}$ International meeting on GR (GR20) 326 | \hfill{} 327 | July 2013 328 | \item 329 | Eastern Gravity Meeting 330 | \hfill{} 331 | June 2013 332 | \item 333 | American Physical Society Meeting 334 | \hfill{} 335 | April 2013 336 | \item 337 | Caltech TAPIR Seminar 338 | \hfill{} 339 | December 2011 340 | \item 341 | Eastern Gravity Meeting 342 | \hfill{} 343 | June 2011 344 | \item 345 | American Physical Society Meeting 346 | \hfill{} 347 | April 2011 348 | \item 349 | American Physical Society Meeting 350 | \hfill{} 351 | April 2010 352 | \end{etaremune} 353 | 354 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 355 | 356 | % Local Variables: 357 | % mode: latex 358 | % TeX-master: "LeoCStein.tex" 359 | % End: 360 | -------------------------------------------------------------------------------- /citeCounts.txt: -------------------------------------------------------------------------------- 1 | Yoo:2023spi (2306.03148): 1 2 | Ma:2023sok (2304.11836): 1 3 | Samanta:2022yfe (2210.01605): 2 4 | Mitman:2022qdl (2208.07380): 46 5 | Mitman:2022kwt (2208.04356): 7 6 | Grant:2022koa (2208.02123): 1 7 | Bronicki:2022eqa (2203.08841): 8 8 | MaganaZertuche:2021syq (2110.15922): 27 9 | Tanay:2021bff (2110.15351): 7 10 | Clark:2021urw (2107.11624): 0 11 | GalvezGhersi:2021sxs (2106.08410): 11 12 | Mitman:2021xkq (2105.02300): 17 13 | Iozzo:2021vnq (2104.07052): 15 14 | Okounkova:2021xjv (2101.11153): 39 15 | Tanay:2020gfb (2012.06586): 13 16 | Tahura:2020vsa (2007.13799): 27 17 | GalvezGhersi:2020fvh (2007.11578): 6 18 | Stein:2019buj (1912.07609): 34 19 | Okounkova:2019zjf (1911.02588): 73 20 | Stein:2019mop (1908.10377): 43 21 | Okounkova:2019dfo (1906.08789): 82 22 | Varma:2019csw (1905.09300): 205 23 | Boyle:2019kee (1904.04831): 245 24 | Varma:2018rcg (1811.06552): 2 25 | Varma:2018aht (1809.09125): 92 26 | Isi:2018miq (1807.02123): 26 27 | Barack:2018yly (1806.05195): 592 28 | Prabhu:2018aun (1805.02668): 46 29 | Gerosa:2018qay (1802.04276): 45 30 | Chen:2018jed (1802.02159): 17 31 | Chen:2017ofv (1707.05319): 8 32 | Okounkova:2017yby (1705.07924): 111 33 | Tso:2016mvv (1608.01284): 5 34 | Flanagan:2016oks (1602.01847): 12 35 | Yagi:2016jml (1602.02413): 163 36 | McNees:2015srl (1512.05453): 44 37 | Yagi:2015oca (1510.02152): 112 38 | Tsang:2015cua (1506.08443): 11 39 | Berti:2015itd (1501.07274): 1099 40 | Galley:2014wla (1412.3082): 39 41 | Stein:2014xba (1407.2350): 43 42 | Stein:2014wza (1407.0744): 7 43 | Yagi:2014qua (1406.7587): 72 44 | Stein:2013ofa (1312.4532): 59 45 | Stein:2013wza (1310.6743): 29 46 | Yagi:2013mbt (1302.1918): 89 47 | Stein:2012ffl (?): 1 48 | Yagi:2012xdc (?): 0 49 | Yagi:2011xp (1110.5950): 175 50 | Vigeland:2011ji (1102.3706): 141 51 | Yunes:2011we (1101.2921): 202 52 | Stein:2010pn (1012.3144): 62 53 | Lutomirski:2009wa (0910.1351): 4 54 | Sutton:2009gi (0908.3665): 130 55 | Chatterji:2006nh (gr-qc/0605002): 113 56 | -------------------------------------------------------------------------------- /fetchInspCiteCounts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import json, urllib.request 4 | 5 | url = ("https://inspirehep.net/api/literature?size=1000&sort=mostrecent&q=" 6 | "a%20L.C.Stein.2%20and%20-collaboration%3A%22LIGO%20Scientific%22%20" 7 | "and%20-collaboration%3AVIRGO%20and%20-collaboration%3ALISA") 8 | 9 | data = json.loads(urllib.request.urlopen(url).read()) 10 | 11 | for hit in data['hits']['hits']: 12 | texkey = hit['metadata']['texkeys'][0] 13 | try: 14 | eprint = hit['metadata']['arxiv_eprints'][0]['value'] 15 | except: 16 | eprint = '?' 17 | print(f"{texkey} ({eprint}): {hit['metadata']['citation_count']}") 18 | -------------------------------------------------------------------------------- /fetchInspCiteCounts.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./fetchInspCiteCounts.py > citeCounts.txt 4 | -------------------------------------------------------------------------------- /res.cls: -------------------------------------------------------------------------------- 1 | % RESUME DOCUMENT STYLE -- Released 23 Nov 1989 2 | % for LaTeX version 2.09 3 | % Copyright (C) 1988,1989 by Michael DeCorte 4 | 5 | \typeout{Document Style `res' <26 Sep 89>.} 6 | 7 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 8 | % res.sty 9 | % 10 | % \documentstyle{res} 11 | % 12 | % Copyright (c) 1988 by Michael DeCorte 13 | % Permission to copy all or part of this work is granted, provided 14 | % that the copies are not made or distributed for resale, and that 15 | % the copyright notice and this notice are retained. 16 | % 17 | % THIS WORK IS PROVIDED ON AN "AS IS" BASIS. THE AUTHOR PROVIDES NO 18 | % WARRANTY WHATSOEVER, EITHER EXPRESS OR IMPLIED, REGARDING THE WORK, 19 | % INCLUDING WARRANTIES WITH RESPECT TO ITS MERCHANTABILITY OR FITNESS 20 | % FOR ANY PARTICULAR PURPOSE. 21 | % 22 | % If you make any improvements, I'd like to hear about them. 23 | % 24 | % Michael DeCorte 25 | % P.O. Box 652 26 | % Potsdam NY 13676 27 | % mrd@sun.soe.clarkson.edu 28 | % mrd@clutx.bitnet 29 | % 30 | % Changes for LaTeX2e -- Venkat Krishnamurthy (Aug 7, 2001) 31 | % 32 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 33 | % You can have multiple style options the legal options ones are: 34 | % 35 | % centered the name and address are centered at the top of the 36 | % page (default) 37 | % 38 | % line the name is the left with a horizontal line then 39 | % the address to the right 40 | % 41 | % overlapped the section titles overlap the body text (default) 42 | % 43 | % margin the section titles are to the left of the body text 44 | % 45 | % 11pt use 11 point fonts instead of 10 point fonts 46 | % 47 | % 12pt use 12 point fonts instead of 10 point fonts 48 | % 49 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 50 | % Commands 51 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 52 | % \Resume prints the word resume but typeset nicely 53 | % 54 | % \newsectionwidth{dimen} 55 | % defines the amount of space the labels extend 56 | % into the left margin. 57 | % DO NOT TRY to change any of the dimensions 58 | % yourself. You will probably confuse the style file. 59 | % 60 | % \name{text} defines your name 61 | % 62 | % \address{text} 63 | % defines your address 64 | % this can be called twice if you have two addresses 65 | % use \\'s to indicate where either line breaks or 66 | % comas should go 67 | % 68 | % \opening this prints your name and address at that spot 69 | % this is not normally needed, as \begin{resume} 70 | % does this but is provided just in case you need 71 | % to do something odd 72 | % 73 | % \begin{resume} ... \end{resume} 74 | % all of the resume should go inside of this 75 | % environment 76 | % 77 | % \section{text} 78 | % This prints 'text' in the left hand margin. 79 | % Its exact placement depends on what the style 80 | % options has been set to. (overlapped or margin) 81 | % You should use \\ to start a new line. If the 82 | % style option is margin, the \\ is converted 83 | % to a space. 84 | % To use this in any of the list environments, put 85 | % the \section after the \item[] but before the 86 | % text. 87 | % Eg. 88 | % \begin{itemize} 89 | % \item\section{text} 90 | % text 91 | % \end{itemize} 92 | % 93 | % \begin{ncolumn}{n} ... \end{ncolumn} 94 | % creates a tabular environment with n equally 95 | % spaced columns. Separate columns by & and 96 | % end them with \\ 97 | % 98 | % \begin{position} ... \end{position} 99 | % this is used to print a job description. There should 100 | % be only one job description in it. Information 101 | % related to the job (such as title, dates...) will 102 | % be printed. 103 | % 104 | % \begin{format} ... \end{format} 105 | % used to change the default format for the position 106 | % environment. Within it the recognized commands are: 107 | % \title{option} 108 | % \employer{option} 109 | % \location{option} 110 | % \dates{option} 111 | % \body 112 | % \\ 113 | % where option is one of l,r,c standing for left, right, center. 114 | % The format will eventually be used to make several 115 | % tabular environments and you are defining the number of columns 116 | % and the placement of text within the columns of the tabulars. 117 | % Each row is terminated by a \\. Any number of options can 118 | % be on a line, they will each be set in their own columns. 119 | % Any of the options except \body may be left out. 120 | % 121 | % Eg. 122 | % \begin{format} 123 | % \title{l}\employer{r}\\ 124 | % \dates{r}\\ 125 | % \body\\ 126 | % \location{l}\\ 127 | % \end{format} 128 | % 129 | % In this example the title and employer information 130 | % are set in 2 columns left justified and right justified 131 | % respectively. Then the date is set right justified. 132 | % Then the body is set. Then the location is set left 133 | % justified. 134 | % 135 | % \employer{text} 136 | % \title{text} 137 | % \dates{text} 138 | % \location{text} 139 | % declare text for the next invocation of the position 140 | % environment 141 | % 142 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 143 | % Glue 144 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 145 | % 146 | % sectionskip the amount of horizontal before a section 147 | % 148 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 149 | % Dimensions 150 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 151 | % 152 | % sectionwidth the amount that the section titles go in the 153 | % left margin 154 | % 155 | % resumewidth the width of the total resume from the left 156 | % margin to the right. Don't use textwidth 157 | % 158 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 159 | % Definitions 160 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 161 | % 162 | % sectionfont the font used to print section titles 163 | % use \renewcommand to change it 164 | % 165 | % namefont the font used to print your name 166 | % use \renewcommand to change it 167 | % 168 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 169 | % THINGS TO DO 170 | % 171 | % add lm,rm options to format style to allow things to be placed 172 | % in the left or right margin respectivly 173 | % 174 | % add capability so that \body doesn't have to be proceeded (followed) 175 | % by a \\ allowing part of the description (eg. location) to be the 176 | % first (last) thing of the body 177 | % 178 | % clean up the list building procedures 179 | % 180 | % write docs to tell people how to use this 181 | 182 | \NeedsTeXFormat{LaTeX2e}[1995/12/01] 183 | \ProvidesClass{res}[2000/05/19 v1.4b Resume class] 184 | 185 | %\DeclareOption{11pt}{\renewcommand\@ptsize{1}} 186 | %\DeclareOption{12pt}{\renewcommand\@ptsize{2}} 187 | 188 | \PassOptionsToClass{11pt,12pt}{article} 189 | \LoadClassWithOptions{article} 190 | 191 | \newif\if@line 192 | \newif\if@margin 193 | 194 | \DeclareOption{line}{\@linetrue} 195 | \DeclareOption{centered}{\@linefalse} 196 | 197 | \DeclareOption{margin}{\@margintrue} 198 | \DeclareOption{overlapped}{\@marginfalse} 199 | 200 | \ExecuteOptions{overlapped,centered} 201 | \ProcessOptions\relax 202 | 203 | \nofiles % resume's don't need .aux files 204 | 205 | 206 | \newtoks\tabular@text % holds the current list being processed 207 | \newtoks\tabular@head % holds the head tabular list 208 | \newtoks\tabular@tail % holds the tail tabular list 209 | \newtoks\@ta % used by \@append 210 | \newtoks\undefined@token\undefined@token={} 211 | 212 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 213 | % prints a centered name with the address centered 214 | % or the two address on opposite sides of the page 215 | % 216 | \def\@printcentername{\begingroup 217 | % print the name centered 218 | \leavevmode\hbox to \textwidth{\hfil\@tablebox{\namefont\@name}\hfil}\par 219 | \@ifundefined{@addressone}{% 220 | % do nothing 221 | }{% 222 | \@ifundefined{@addresstwo}{ 223 | % only one address 224 | \leavevmode\hbox to \textwidth{\hfil\@tablebox{\@addressone}\hfil}\par 225 | }{ 226 | % two addresses 227 | \leavevmode\hbox to \textwidth{\@tablebox{\@addressone}\hfil 228 | \@tablebox{\@addresstwo}}\par 229 | }% 230 | }% 231 | \endgroup} 232 | 233 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 234 | % this is used to print the name and address at the top of 235 | % the page with a hline in between 236 | % 237 | \def\namefont{\large\bf} 238 | \def\@linename{\begingroup 239 | \def\\{, } 240 | {\namefont\@name} 241 | \vskip 2pt 242 | \fullline 243 | \vskip 2pt 244 | % where do you live? 245 | \@ifundefined{@addressone}{% 246 | % do nothing 247 | }{% 248 | \leavevmode\hbox to \textwidth 249 | {\hfill\vbox{\hbox{\@addressone} 250 | \hbox{\@addresstwo} 251 | }% 252 | }\par 253 | } 254 | \endgroup} 255 | 256 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 257 | % HEADINGS: 258 | % There are two types of headings: 259 | % 1) one with the name centered and the address centered or 260 | % in the left and right side if there are two address 261 | % 2) one where the name is in the upper left corner 262 | % the a line accross the paper 263 | % then the address all on one line in the right corner 264 | % the second address will be directly below the first if defined 265 | % 266 | \let\print@name\relax 267 | \def\ds@centered{\ifx\print@name\relax\let\print@name\@printcentername\fi} 268 | \def\ds@line{\ifx\print@name\relax\let\print@name\@linename\fi} 269 | 270 | 271 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 272 | % Use this to set the sectionwidth. 273 | % It adjust the width of the text as well as the hoffset 274 | % You probably shouldn't touch any of the size paramaters 275 | % unless you really understand all of this but it is not 276 | % hard. Either way, it can only be executed once 277 | % 278 | \def\sectionfont{\bf} 279 | \newdimen\sectionwidth 280 | \newskip\sectionskip 281 | \newdimen\resumewidth 282 | 283 | \resumewidth=6.5in 284 | \sectionskip=3.5ex plus 1ex minus -.2ex % values stolen from LaTeX 285 | 286 | \def\newsectionwidth#1{% 287 | \sectionwidth=#1 288 | \textwidth=\resumewidth 289 | \advance\textwidth-\sectionwidth 290 | \hsize=\textwidth 291 | \hoffset=\sectionwidth 292 | } 293 | 294 | 295 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 296 | % This is for sectiontitles that are entirely in the left margin. 297 | % multiline sectiontitles are permited and will be broken by 298 | % \TeX{} to fit into a box \verb|\sectionwidth| wide. It is advised 299 | % that \verb|\\| be used to break the lines by hand as \TeX{} will 300 | % probably not do what you want. 301 | % 302 | % When using this with {\tt tabbing} and {\tt list} (or anything 303 | % that is made out of {\tt list}) put the \section's inside of 304 | % the \verb|\begin{}| and the \verb|\item|Eg. 305 | % \begin{verbatim} 306 | % \begin{trivlist} 307 | % \item[] 308 | % \section{foo} 309 | % text 310 | % \end{trivlist} 311 | % \end{verbatim} 312 | % 313 | \def\boxed@sectiontitle#1{% 314 | % this macro may be called in a tabular. Special code must be written 315 | % to accomodate this. In LaTeX, a tabular is made out of hboxes. 316 | % TeX never goes into horizontal mode because of this; it only 317 | % gets into vertical mode and restricted horizontal mode. Certain 318 | % indenting problems must be handled because of this. They 319 | % are delt with at the end of this routine. 320 | % It is also necessary to close the hbox that was created before 321 | % the \section and create a new one when this macro has ended. 322 | % This macro therefore simulates a \kill, so that any text before 323 | % the \section not be printed. The proper use is therefore 324 | % ... 325 | % text\\ 326 | % \section{foo} 327 | % more text\\ 328 | % ... 329 | \ifx\\\@tabcr % is this in a tabular? (this *should* work but is a cludge) 330 | \@stopfield % the is the first part of a \kill 331 | \else 332 | \@@par % This will end the previous paragraph if needed and 333 | % go into vertical mode. If this was already in 334 | % vertical mode then the \par does nothing. 335 | 336 | \fi 337 | \begingroup 338 | \everypar={}% 339 | \def\par{\@@par}% 340 | \let\\=\@normalcr 341 | \addpenalty{\@secpenalty} % this would be a good place for a page break 342 | % \@secpenalty is what LaTeX uses before its 343 | % section's. It happens to be -300 344 | \addvspace{\sectionskip} % put in a bit of glue 345 | % The following hbox will be contributed to the page list without going 346 | % into horizontal mode. Therefore, any \parindent's, \parshape's, \leftskip 347 | % will be ignored but \hoffset's are not. The result is that the box will 348 | % only by \hoffset. This is what I want 349 | \hbox to 0pt{% 350 | \hss % this is an llap. In other words, this glue 351 | % will shrink by the width of the stuff in the vbox 352 | % (\sectionwidth) into the left margin and then 353 | % insert the contents of the vbox. 354 | \vtop to 0pt{% make a 0pt height paragraph, with the baseline at the 355 | % lined up with the baseline of the first box in the list 356 | \leftskip=0pt 357 | \hsize=\sectionwidth 358 | \textwidth=\sectionwidth 359 | \raggedright % you don't want this filled out to the right margin 360 | \sectionfont 361 | #1\vss % Go into horizontal mode; do the paragraph; 362 | % go into vertical mode; add some negative glue 363 | % to give a box of 0pt height and depth 364 | }% 365 | }% 366 | \addpenalty{-\@secpenalty} % this would be a bad place for a page break 367 | \vskip-\baselineskip % when the next box is processed, baselineskip glue 368 | % glue will be added (the box has no depth because of 369 | % the \vss; therefore, we don't have to worry about 370 | % \lineskiplimit). This -\baselineskip glue 371 | % is to undo this. \nointerlineskip doesn't 372 | % work because the baseline of this line would be lined 373 | % up with the top of the top of the next box. We 374 | % want the baselines lined up. 375 | % 376 | % It may have been possible to do this by forcing the 377 | % baseline of this box to be the top of the box but 378 | % then the interline skip between this box and the 379 | % previous box would be off as the baselines of the 380 | % this box (the one that being made above) and the 381 | % previous line would be separated by \baselineskip 382 | % (probably, it may be separted by the depth of the 383 | % previous box + \lineskip) but as the baseline of 384 | % this box has been moved to the top, the box's would 385 | % separted by to much glue. The exact amount being 386 | % the height of this box. 387 | \endgroup 388 | \ifx\\\@tabcr % is this in a tabular? (this *should* work but is a cludge) 389 | % this is the second part of the \kill; it starts the next tabbing line 390 | % Because this routine will never get into paragraph mode when used in 391 | % tabbing the \parskip that is discussed below will never be inserted. 392 | % Therefore it should not be negated as done below. 393 | \@startline 394 | \ignorespaces 395 | \else 396 | \vskip-\parskip % The next thing to be contributed will be a paragraph. 397 | % Right before being contributed though a \vskip\parskip 398 | % will be inserted. This is to negate it. 399 | % 400 | % I do consider this to be a bit of a cludge but 401 | % I can not find a way to write \unskipfutureskip 402 | % or a way to make TeX think that nothing has 403 | % been contributed to the page list. 404 | \fi 405 | } 406 | 407 | 408 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 409 | % This is for sectiontitles that are entirely above the section text 410 | % 411 | \def\unboxed@sectiontitle#1{% 412 | \ifx\\\@tabcr % see boxed@sectiontitle for explation 413 | \@stopfield 414 | \else 415 | \@@par 416 | \fi 417 | \begingroup 418 | \everypar={}% 419 | \def\par{\@@par}% 420 | \def\\{ } 421 | \addpenalty{\@secpenalty} 422 | \addvspace{\sectionskip} 423 | \hbox to 0pt{\hss\hbox to \sectionwidth{\sectionfont#1\hss}} 424 | \addpenalty{-\@secpenalty} % this would be a bad place for a page break 425 | \endgroup 426 | \ifx\\\@tabcr % see boxed@sectiontitle for explation 427 | \@startline 428 | \else 429 | \vskip-\parskip 430 | \fi 431 | \ignorespaces 432 | } 433 | 434 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 435 | % There are two types of section headings: 436 | % 1) the section heading is all on one line and directly 437 | % below it, is the body of the text 438 | % 2) the section heading is entirely in the left margin 439 | % (possibly taking multiple lines) with the body of 440 | % the text next to it 441 | % 442 | \let\@@section\relax 443 | \def\ds@overlapped{\ifx\@@section\relax\newsectionwidth{0.5in}\let 444 | \@@section\unboxed@sectiontitle\fi} 445 | \def\ds@margin{\ifx\@@section\relax\newsectionwidth{1.3in}\let 446 | \@@section\boxed@sectiontitle\fi} 447 | 448 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 449 | % DEFAULTS: (some of them) 450 | % 451 | % centered name 452 | % overlapped section titles 453 | % 454 | % format is: 455 | % title employer 456 | % location dates 457 | % body 458 | % with everything in the left of its column 459 | 460 | %\input article.sty 461 | 462 | \if@line\ds@line\else\ds@centered\fi 463 | \if@margin\ds@margin\else\ds@overlapped\fi 464 | 465 | 466 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 467 | % typeset resume all nice and pretty 468 | % 469 | \def\Resume{{R\'{e}sum\'{e}}} 470 | 471 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 472 | % makes a line of width \textwidth starting at -\hoffset 473 | % 474 | \def\fullline{ % hrules only listen to \hoffset 475 | \nointerlineskip % so I have this code 476 | \moveleft\hoffset\vbox{\hrule width\textwidth} 477 | \nointerlineskip 478 | } 479 | 480 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 481 | % create a multiline box. 482 | % 483 | \def\@tablebox#1{\begin{tabular}[t]{@{}l@{\extracolsep{\fill}}}#1\end{tabular}} 484 | 485 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 486 | % use this to define your name 487 | % 488 | \def\name#1{\def\@name{#1}} 489 | 490 | \def\@name{} 491 | 492 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 493 | % use this to define your address, this may be called more than once. 494 | % 495 | \let\@addressone\relax 496 | \let\@addresstwo\relax 497 | 498 | \def\address#1{ 499 | \@ifundefined{@addressone}{\def\@addressone{#1}}{\def\@addresstwo{#1}}} 500 | 501 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 502 | % if you want to print your name and address is a slightly 503 | % different format than sugessted, then this can be used 504 | % to place it exactly where you want 505 | % 506 | \def\opening{\def\@opening{} 507 | \begingroup 508 | \leftskip=-\hoffset % I use leftskip to move things to the left as 509 | \advance\textwidth\hoffset % changing hoffset doesn't work. But this 510 | \hsize=\textwidth % doesn't really work as hboxes are rules 511 | % are unaffeted 512 | \let\par=\@@par 513 | \parindent=0pt 514 | \parskip=0pt 515 | \print@name 516 | \endgroup 517 | } 518 | 519 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 520 | % all of the resume goes in the resume environment 521 | % 522 | \newenvironment{resume}{\begingroup 523 | \@ifundefined{@opening}{\opening}{} 524 | }{\endgroup} 525 | 526 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 527 | % gives you a tabular environment with n equally spaced columns 528 | % \begin{ncolumn}{#} ... \end{ncolumn} 529 | % 530 | % The p option of LaTeX is broken in all but the newest verion 531 | % of latex.tex, this is how to fix it 532 | % 533 | \def\@endpbox{\par\egroup\hfil} 534 | \let\@@endpbox=\@endpbox 535 | 536 | \newdimen\@columnwidth % the width of each column equal to 537 | \def\ncolumn#1{% 538 | % \@columnwidth = \textwidth / #1 539 | \@columnwidth=\textwidth \divide\@columnwidth by #1 540 | \begin{tabular*}{\textwidth}[t]% 541 | {*{#1}{@{}p{\@columnwidth}@{\extracolsep{\fill}}}} 542 | } 543 | 544 | \def\endncolumn{\end{tabular*}} 545 | 546 | 547 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 548 | % \employer{text} defines employer to be text 549 | % \location{text} defines location to be text 550 | % \dates{text} defines dates to be text 551 | % \title{text} defines title to be text 552 | % \body 553 | % 554 | 555 | \def\employer#1{\def\@employer{\print@employer{#1}}} 556 | \def\location#1{\def\@location{\print@location{#1}}} 557 | \def\dates#1{\def\@dates{\print@dates{#1}}} 558 | \def\title#1{\def\@title{\print@title{#1}}} 559 | 560 | \let\l@justify\raggedright 561 | \let\r@justify\raggedleft 562 | \let\c@justify\centering 563 | 564 | 565 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 566 | % \@format{name}{justify} 567 | % will define \print@#1 to print it's one argument 568 | % justified according to #2 which can be 569 | % l = left 570 | % r = right 571 | % c = center 572 | % 573 | % eg. 574 | % \@format{employer}{c} 575 | % is the same as \def\print@employer#1{{\centering #1\par}} 576 | % 577 | \def\@format#1#2{% 578 | \expandafter\gdef\csname print@#1\endcsname##1{% 579 | {\csname#2@justify\endcsname##1\par}} 580 | } 581 | 582 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 583 | % this is used to define how the position environment should 584 | % formated. 585 | % 586 | % \begin{format} positioning text \end{format} 587 | % where positioning text may be 588 | % \employer{pos} 589 | % \location{pos} 590 | % \dates{pos} 591 | % \title{pos} 592 | % \body (for the body of the position environment) 593 | % where pos is 594 | % l for left 595 | % r for right 596 | % c for center 597 | % use \\ to break the line 598 | % you don't have to use all of the options. 599 | % on any one line, you should indicate what you want on that line 600 | % and where it should go within its column. 601 | % eg. 602 | % the following prints the employer in the left with the location 603 | % centered within that its column. It then prints the date on the 604 | % right. Then it prints the body of the position environment. Then 605 | % it prints the title centered within its column; as there is only 606 | % one column here it is really just centered. 607 | % 608 | % \begin{format} 609 | % \employer{l}\location{c}\\ 610 | % \dates{r}\\ 611 | % \body\\ 612 | % \title{c}\\ 613 | % \end{format} 614 | 615 | \newcounter{numberofcolumns} 616 | \newenvironment{format}{% 617 | \def\end@line@head{\append@tabular@head{tabular@text}\tabular@text={}% 618 | \c@numberofcolumns 0} 619 | \def\end@line@tail{\append@tabular@tail{tabular@text}\tabular@text={}% 620 | \c@numberofcolumns 0} 621 | \tabular@text={} 622 | \tabular@head={} 623 | \tabular@tail={} 624 | \c@numberofcolumns 0 625 | \let\\=\end@line@head 626 | \def\employer##1{\advance\c@numberofcolumns 1 627 | \@format{employer}{##1} 628 | \append@tabular@text{employer}} 629 | \def\location##1{\advance\c@numberofcolumns 1 630 | \@format{location}{##1} 631 | \append@tabular@text{location}} 632 | \def\dates##1{\advance\c@numberofcolumns 1 633 | \@format{dates}{##1} 634 | \append@tabular@text{dates}} 635 | \def\title##1{\advance\c@numberofcolumns 1 636 | \@format{title}{##1} 637 | \append@tabular@text{title}} 638 | \def\body{\iftoks\tabular@head\undefined@token\then 639 | \else 640 | \@append{\noexpand\\}\to\tabular@head 641 | \skotfi 642 | \let\\=\end@line@tail}}{} 643 | 644 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 645 | %taken from page 378 of TeXbook but freely hacked 646 | % 647 | % appends the expansion of #1 to the token list #2 648 | 649 | \def\@append#1\to#2{% 650 | \@ta=\expandafter{#1}% 651 | \xdef\@append@temp{\the#2\the\@ta} 652 | \global#2=\expandafter{\@append@temp}% 653 | } 654 | 655 | 656 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 657 | % CHAA006%vaxb.rhbnc.ac.uk@NSS.Cs.Ucl.AC.UK 658 | % texhax.88.078 659 | % is used to see if two token lists are equal 660 | % there must be a better way 661 | % 662 | 663 | \let \then = \empty 664 | \def \iftoks #1#2\then #3\else #4\skotfi{ 665 | \edef \1{\the #1} 666 | \edef \2{\the #2} 667 | \ifx \1\2\then #3\else #4\fi} 668 | 669 | 670 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 671 | % \append@tabular@text{command} 672 | % 673 | % appends command to the end of \tabular@text. 674 | % NOTE: command MUST be a command but without the \ 675 | % Eg. \append@tabular@text{relax} 676 | % 677 | % used to define \tabular@text for the tabular environment 678 | % used by append@tabular@head and append@tabular@tail 679 | % 680 | 681 | \def\append@tabular@text#1{% 682 | \iftoks\tabular@text\undefined@token\then 683 | \global\tabular@text=\expandafter{\csname @#1\endcsname} 684 | \else 685 | \@append{&}\to\tabular@text 686 | \@append{\csname @#1\endcsname}\to\tabular@text 687 | \skotfi 688 | } 689 | 690 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 691 | % append@tabular@head 692 | % 693 | % appends command to the end of \tabular@text@head 694 | % NOTE: command MUST be a command but without the \ 695 | % Eg. \append@tabular@head{relax} 696 | % 697 | % used to define \tabular@head for the tabular environment 698 | % used by the position environment 699 | % 700 | \def\append@tabular@head#1{% 701 | \ifnum\the\c@numberofcolumns=0\relax 702 | \else 703 | \iftoks\tabular@head\undefined@token\then 704 | \relax 705 | \else 706 | \@append{\noexpand\\}\to\tabular@head 707 | \@append{\noexpand\penalty-\@secpenalty}\to\tabular@head 708 | \skotfi 709 | \@append{\noexpand\begin{ncolumn}}\to\tabular@head 710 | \@append{\expandafter{\the\c@numberofcolumns}}\to\tabular@head 711 | \@append{\the\csname#1\endcsname}\to\tabular@head 712 | \@append{\noexpand\end{ncolumn}}\to\tabular@head 713 | \fi 714 | } 715 | 716 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 717 | % append@tabular@tail 718 | % 719 | % appends command to the end of \tabular@text@htail 720 | % NOTE: command MUST be a command but without the \ 721 | % Eg. \append@tabular@tail{relax} 722 | % 723 | % used to define \tabular@tail for the tabular environment 724 | % used by the position environment 725 | % 726 | \def\append@tabular@tail#1{% 727 | \ifnum\the\c@numberofcolumns=0\relax 728 | \else 729 | \iftoks\tabular@tail\undefined@token\then 730 | \else 731 | \@append{\noexpand\\}\to\tabular@tail 732 | \@append{\noexpand\penalty-\@secpenalty}\to\tabular@tail 733 | \skotfi 734 | \@append{\noexpand\begin{ncolumn}}\to\tabular@tail 735 | \@append{\expandafter{\the\c@numberofcolumns}}\to\tabular@tail 736 | \@append{\the\csname#1\endcsname}\to\tabular@tail 737 | \@append{\noexpand\end{ncolumn}}\to\tabular@tail 738 | \fi 739 | } 740 | 741 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 742 | % put the actual job descriptions here 743 | % \begin{postion} ... \end{position} 744 | % in the ... describe the position. 745 | % don't put the \dates \location etc in here. define them before hand 746 | \newenvironment{position}% 747 | {% 748 | \begingroup 749 | \par 750 | \the\tabular@head 751 | % \addpenalty{-\@secpenalty}% bad place for a page break 752 | \penalty -\@secpenalty % bad place for a page break 753 | \penalty 10000 754 | \ignorespaces 755 | }{% 756 | \the\tabular@tail 757 | % \addpenalty{\@secpenalty}% good place for a page break 758 | \penalty \@secpenalty % good place for a page break 759 | \endgroup 760 | } 761 | 762 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 763 | % DEFAULTS: (the rest of them) 764 | % 765 | % centered name 766 | % overlapped section titles 767 | % 768 | % format is: 769 | % title employer 770 | % location dates 771 | % body 772 | % with everything in the left of its column 773 | 774 | \@secpenalty = -500 775 | \topmargin 0pt 776 | \headheight 0pt 777 | \headsep 0pt 778 | \textheight 9in 779 | \parindent 0pt 780 | \topmargin 0in 781 | \oddsidemargin 0pt 782 | \evensidemargin 0pt 783 | \marginparwidth 0pt 784 | \parindent 0pt 785 | \parskip \baselineskip 786 | \setcounter{secnumdepth}{0} 787 | \def\@listI{\leftmargin\leftmargini 788 | \topsep 0pt 789 | \parskip 0pt 790 | \partopsep 2pt plus 2pt 791 | \parsep 2pt plus 2pt 792 | \itemsep \parsep} 793 | 794 | \pagestyle{empty} % don't want page numbers 795 | 796 | \begin{format} 797 | \title{l}\employer{r}\\ 798 | \location{l}\dates{r}\\ 799 | \body\\ 800 | \end{format} 801 | 802 | \let\section\@@section 803 | 804 | --------------------------------------------------------------------------------