-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AASTeX<6 macros; more documentation.
- Loading branch information
Showing
3 changed files
with
40 additions
and
4 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 |
---|---|---|
@@ -1,2 +1,13 @@ | ||
Simple python3 tool to create figure set markup using a YAML configuration | ||
file and CSV input translation table. Assumes each figure set caption is | ||
similar to the others. | ||
|
||
|
||
File | Explanation | ||
:--- | :---------- | ||
`figset.tex` | AASTeX < 6 macros | ||
| (add to .tex header) | ||
`figure1set.tex` | Example Figure Set | ||
`make_translation.sh` | table parsing script | ||
`newfigureset.py` | python newfigureset.py translation.yaml | ||
`translation.csv` | Example CSV input to translation.yaml | ||
`translation.yaml` | Figure Set parameters |
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,20 @@ | ||
%% For manuscripts created with AASTeX < 6.0 | ||
%% | ||
%% You can integrate this mark up directly into your ms.tex file | ||
%% by placing the new commands below before your \begin{document} | ||
%% command and everything that follows within the run of text | ||
%% where you want the figure set to appear. | ||
|
||
% FIGSET-MACROS-BEGIN | ||
\newcommand{\noprint}[1]{} | ||
\newcommand{\figsetstart}{{\bf Fig. Set} } | ||
\newcommand{\figsetend}{} | ||
\newcommand{\figsetgrpstart}{} | ||
\newcommand{\figsetgrpend}{} | ||
\newcommand{\figsetnum}[1]{{\bf #1.}} | ||
\newcommand{\figsettitle}[1]{ {\bf #1} } | ||
\newcommand{\figsetgrpnum}[1]{\noprint{#1}} | ||
\newcommand{\figsetgrptitle}[1]{\noprint{#1}} | ||
\newcommand{\figsetplot}[1]{\noprint{#1}} | ||
\newcommand{\figsetgrpnote}[1]{\noprint{#1}} | ||
% FIGSET-MACROS-END |
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