-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2d3ed7d
Showing
9 changed files
with
1,650 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.eps filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.tiff filter=lfs diff=lfs merge=lfs -text | ||
*.tif filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.bmp filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.aux | ||
*.bcf | ||
*.fdb_latexmk | ||
*.fls | ||
*.out | ||
*.synctex.gz | ||
*.log | ||
*.run.xml | ||
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# LPSC LaTeX Abstract Template | ||
|
||
This is a LaTeX template for LPSC and other LPI meetings. | ||
This directory contains an example files. | ||
The template file uses several pacakages, but most LaTeX distributions should have these packages already. | ||
|
||
| File | Description | | ||
| ---- | ----------- | | ||
| lpsc_abstract.tex | The template file. Modify this with your own abstract. | | ||
| bibliography.bib | Sample bibliography file | | ||
| figure.png | Sample figure, PNG format | | ||
| lpsc_abstract.cls | The package file for setting things up, no modifications needed. | | ||
| unsrtetal.bst | A BibTeX .bst file that functions like unsrtnat, but shortens long author lists. | | ||
|
||
|
||
## Disclaimer | ||
> These files are not commissioned or supported by the | ||
> LPI. We created it to make our own lives easier, and figured that | ||
> other folks might benefit from it. This template is no substitute | ||
> for reading the appropriate style and formatting guides provided | ||
> by the LPI, as they are subject to change. Don't blame us if the | ||
> LPI complains about your format (or rejects your abstract). | ||
## Source | ||
* [Ross A. Beyer and Moses P. Milazzo](https://github.com/rbeyer/lpsc_template) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@article{article1, | ||
author = {Albert Benedict Author and Claudius Dominic Author}, | ||
title = {Example of title 1 not printed in the bibliography}, | ||
journal = {JGR}, | ||
year = 1997, | ||
volume = 90, | ||
pages = {1151–1154}, | ||
url = {https://domain.tld}, | ||
} | ||
@article{article2, | ||
author = {{Author E. F.} and {Author E. F.} and {Author E. F.} and {Author E. F.} and {Author E. F.}}, | ||
title = {Example of title 2 not printed in the bibliography}, | ||
journal = {Meteoritics \& Planet. Sci.}, | ||
year = 1997, | ||
volume = {32, A74}, | ||
url = {https://domain.tld}, | ||
} | ||
@article{article3, | ||
author = {G. H. Author}, | ||
title = {Example of title 3 not printed in the bibliography}, | ||
journal = {LPS XXVII}, | ||
year = 1996, | ||
pages = {1344–1345}, | ||
url = {https://domain.tld}, | ||
} | ||
@article{article4, | ||
author = {I. J. Author}, | ||
title = {Example of title 4 not printed in the bibliography}, | ||
journal = {LPS XXXIII}, | ||
year = 2002, | ||
volume = {Abstract \#1402}, | ||
url = {https://domain.tld}, | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
% This is a LaTeX 2e Class file for creating LPSC abstracts | ||
|
||
\ProvidesClass{lpsc_abstract}[2018/12/03 LPSC Abstract Class] | ||
\NeedsTeXFormat{LaTeX2e} | ||
|
||
% Copyright (C) 2005,2007,2008 Ross A. Beyer | ||
% Copyright (C) 2018 Benoit Seignovert | ||
|
||
% This work is licensed under the Creative Commons | ||
% Attribution-Noncommercial-Share Alike 4.0 License. To view a copy | ||
% of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/; | ||
% or, (b) send a letter to Creative Commons, 171 2nd Street, Suite | ||
% 300, San Francisco, California, 94105, USA. | ||
|
||
%------------------------------------------------------------------------------- | ||
% Class options | ||
% | ||
% (need to be done before the external package loading, for example because | ||
% we need \paperwidth, \paperheight and \@ptsize to be defined before loading | ||
% geometry and fancyhdr) | ||
%------------------------------------------------------------------------------- | ||
% Inherit options of article | ||
\DeclareOption*{% | ||
\PassOptionsToClass{\CurrentOption}{article} | ||
} | ||
\ProcessOptions\relax | ||
\LoadClass[letterpaper,10pt,twocolumn,twoside]{article} | ||
|
||
%%---------------------------- Require Package ------------------------ | ||
|
||
\RequirePackage{authblk} % Author affiliations | ||
\RequirePackage{graphicx} % Nice graphics, optional | ||
\RequirePackage{siunitx} % Scientific units, optional | ||
|
||
\RequirePackage{times} | ||
\RequirePackage[margin=1in]{geometry} % Sets margins cleanly | ||
\RequirePackage[small,compact]{titlesec} % To compress the section titles even more, use the | ||
\RequirePackage{paralist} % For compressing bibliography into a paragraph | ||
\RequirePackage{balance} % For balancing columns on the page. | ||
\RequirePackage[ | ||
pdftex, | ||
colorlinks=true, | ||
urlcolor=blue, | ||
citecolor=black, | ||
linkcolor=black | ||
]{hyperref} % Puts actual hyperlinks in your PDF, optional. | ||
|
||
\RequirePackage[numbers]{natbib} | ||
|
||
%%---------------------------- Global Settings ------------------------ | ||
|
||
%% Page Style to put numbers at the top. | ||
\pagestyle{empty} | ||
|
||
\setlength{\columnsep}{.4in} | ||
|
||
\titlespacing{\paragraph}{.25in}{2pt}{.5em} | ||
\titleformat{\subparagraph}[runin]{\normalfont\normalsize\itshape}{\thesubparagraph}{1em}{} | ||
\titlespacing{\subparagraph}{.25in}{2pt}{.5em} | ||
|
||
|
||
%%---------------------------- Commands ---------------- | ||
%% | ||
%% We need to create some commands that the LPSC template will use | ||
|
||
% Change authblk defaults | ||
\renewcommand\Authands{ and } | ||
\renewcommand\AB@affilsepx{, } | ||
|
||
% Edit maketitle command | ||
\def\@maketitle{% | ||
{\bfseries\@title. }% | ||
{\AB@authlist, \AB@affillist.}% | ||
\vskip .3in | ||
} | ||
\renewcommand\maketitle{ | ||
\thispagestyle{empty} | ||
\twocolumn[\@maketitle] | ||
} | ||
|
||
% Put the bibliography inline | ||
\bibliographystyle{unsrtetal} | ||
|
||
\renewenvironment{thebibliography}[1]{% | ||
\let\par\relax\inparaenum[{[}1{]}]}{\endinparaenum} | ||
\let\oldbibitem\bibitem | ||
\renewcommand{\bibitem}[1]{\item\vphantom{\oldbibitem{#1}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
% This is an LPSC Abstract template for LaTeX 2e that is based off of the | ||
% LaTeX article document class. | ||
|
||
% Copyright (C) 2005,2007 Ross A. Beyer | ||
% Copyright (C) 2008 Ross A. Beyer and Moses P. Milazzo | ||
% Copyright (C) 2018 Benoit Seignovert | ||
|
||
% This work is licensed under the Creative Commons | ||
% Attribution-Noncommercial-Share Alike 4.0 License. To view a copy | ||
% of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/; | ||
% or, (b) send a letter to Creative Commons, 171 2nd Street, Suite | ||
% 300, San Francisco, California, 94105, USA. | ||
|
||
\documentclass{lpsc_abstract} | ||
|
||
\title{REPLACE THIS SENTENCE WITH THE TITLE OF YOUR ABSTRACT} | ||
|
||
\author[1]{A. B. Author} | ||
\author[2]{C. D. Author} | ||
|
||
\affil[1]{Affiliation (include full mailing address and e-mail address if desired) for first author} | ||
\affil[2]{Affiliation for second author (full mailing address and e-mail address)} | ||
|
||
\begin{document} | ||
|
||
\maketitle | ||
|
||
\paragraph{Introduction:} | ||
Replace these instructions with the text of your abstract. | ||
Do NOT delete the section break above. | ||
The text will appear in two columns that are each \SI{\sim 3}{inches} wide. | ||
(Please make sure your paper size is set to U.S. letter, \SIrange[range-phrase=$\times$]{8.5}{11}{"}, before submitting your abstract.) | ||
Page margins are set to be one inch on all sides. | ||
If you are including tables or figures, they MUST be imported into this file. | ||
|
||
This template is designed to accommodate abstracts for the majority of USRA meetings; it is your responsibility to be aware of the guidelines (length restrictions, file size, etc.) for a particular meeting. These will be detailed in the Call for Abstracts section of the meeting announcement. | ||
|
||
The text will automatically wrap to a second page if necessary. The running head on the second page of this template has been eliminated intentionally. | ||
|
||
\paragraph{Digital Formats:} | ||
Any image file format that can be imported into this file will be acceptable for publication; to avoid technical problems, we suggest using TIFF (.tif) or GIF (.gif) files for photographs, and encapsulated PostScript (.eps) or Windows metafiles (.wmf) for line drawings. | ||
We ask that you use smaller-format files whenever possible (for example, don’t use a 1-MB TIFF file if a 250-K GIF file provides acceptable resolution). | ||
|
||
\paragraph{Heading Styles:} | ||
The section heads in this template use the correct style (upper and lower case, bold, followed by a colon). The format for second-level heads is show below: | ||
|
||
\subparagraph{Sample of a level-two head.} | ||
Automatic paragraph indents are imbedded to appear every time you use a hard return. If you’re using the spell checker and it doesn’t seem to be working, check the “Language” option under the “Tools” to make sure that “No Proofing” isn’t selected as the default. You should also check that the default font is Times New Roman and not New York (this conversion takes place on some Macintosh systems). | ||
|
||
\paragraph{Use of Meteorite Names:} | ||
All meteorites that are cited in abstracts must have official names approved by the Nomenclature Committee. Authors can use the \href{http://www.lpi.usra.edu/meteor/}{Meteoritical Bulletin Database} to check the status of a meteorite name. New meteorites without approved names may be rejected. The instructions for submitting new meteorite names can be found on the \href{http://meteoriticalsociety.org/?page_id=63}{Meteoritical Society website}. | ||
|
||
The full names of meteorites should be used in titles, subheadings, and at first mention in the text. Abbreviations, including those published in the Antarctic Meteorite Newsletter and the Meteoritical Bulletin, may be used in tables and elsewhere. Note that in the abbreviated form, there should be a space between the place name and the number. | ||
In addition, Antarctic meteorites recovered prior to 1981 may have an A after the blank space. Please see the \href{http://meteoriticalsociety.org/?page_id=61}{list of standard abbreviations and examples} of their proper usage. | ||
|
||
\paragraph{References:} | ||
Use the brief numbered style common in many abstracts, e.g., \cite{article1}, \cite{article2}, etc. References should then appear in numerical order in the reference list, and should use the following abbreviated style: | ||
\nocite{article3,article4} | ||
|
||
\bibliography{bibliography} | ||
|
||
\paragraph{Additional Information:} | ||
If you have any questions or need additional information | ||
regarding the preparation of your abstract, call the LPI at 281-486-2142 | ||
or -2188 (or send an e-mail message to \href{mailto:[email protected]}{[email protected]}). | ||
|
||
\paragraph{Please DO NOT Submit Duplicates of Your Abstract;} should you find it necessary to replace or repair your abstract PRIOR TO the submission dead-line, return to the \href{https://www.hou.usra.edu/meeting_portal/abstract_submission/}{abstract submission portion} of the meeting portal and click on the “Update” link that ap-pears next to the title of the abstract you submitted. | ||
|
||
% \paragraph{Figures:} | ||
% Uncomment this paragraph to enable figure input | ||
|
||
% \begin{figure}[!ht] | ||
% \label{color_scales} | ||
% \centering | ||
% \includegraphics[width=\columnwidth]{figure.png} | ||
% \caption{This is a figure caption.} | ||
% \end{figure} | ||
|
||
\end{document} |
Oops, something went wrong.