diff options
-rw-r--r-- | README-hacking.md | 16 | ||||
-rw-r--r-- | paper.tex | 16 | ||||
-rw-r--r-- | reproduce/software/config/gnuastro/gnuastro.conf | 10 | ||||
-rw-r--r-- | tex/src/preamble-header.tex | 12 |
4 files changed, 33 insertions, 21 deletions
diff --git a/README-hacking.md b/README-hacking.md index ce20720..fac9876 100644 --- a/README-hacking.md +++ b/README-hacking.md @@ -576,12 +576,14 @@ First custom commit - **Title**, **short description** and **author**: The title and basic information of your project's output PDF paper should be added in - `tex/src/preamble-header.tex`. Scroll down this file and you will see - parts that must be changed. Of course, if you use a different LaTeX - method of managing the title and authors, please feel free to use your - own methods after finishing this checklist and doing your first - commit. After you are done, run the `./project make` command again to - see your changes in the final PDF. + `paper.tex`. You should see the relevant place in the preamble (prior + to `\begin{document}`. After you are done, run the `./project make` + command again to see your changes in the final PDF, and make sure that + your changes don't cause a crash in LaTeX. Of course, if you use a + different LaTeX package/style for managing the title and authors (in + particular a specific journal's style), please feel free to use it + your own methods after finishing this checklist and doing your first + commit. - **Delete dummy parts (can be done later)**: The template contains some parts that are only for the initial/test run, mainly as a @@ -592,7 +594,7 @@ First custom commit `\includeabstract{` to `\vspace{0.25cm}`) and start writing your own (a single sentence can be enough now). 2) Add some keywords under it in the keywords part. 3) Delete everything between `%% Start of main - body.` and `%% Start of main body.`. 4) Remove the notice in the + body.` and `%% End of main body.`. 4) Remove the notice in the "Acknowledgments" section (in `\new{}`) and add Acknowledge your funding sources. Just don't delete the existing acknowledgment statement: this template was designed by funding from many @@ -25,6 +25,22 @@ \input{tex/src/preamble-pgfplots.tex} \input{tex/src/preamble-necessary.tex} +%% Title and author information. For a more fine-grained control of the +%% headers including author name, or paper info, see +%% `tex/src/preamble-header.tex'. Note that if you plan to use a journal's +%% LaTeX style file, you will probably not need to set them, and can also +%% replace this "Title and author information" section with the journal's +%% preferred format. +\title{\large \uppercase{The paper's title goes here}} +\author[1]{Your name} +\author[2]{Coauthor one} +\author[1,3]{Coauthor two} +\affil[1]{The first affiliation in the list.; \url{your@email.address}} +\affil[2]{Another affilation can be put here.} +\affil[3]{And generally as many affiliations as you like. +\par \emph{Received YYYY MM DD; accepted YYYY MM DD; published YYYY MM DD}} +\date{} + diff --git a/reproduce/software/config/gnuastro/gnuastro.conf b/reproduce/software/config/gnuastro/gnuastro.conf index 57fcadc..a5b666f 100644 --- a/reproduce/software/config/gnuastro/gnuastro.conf +++ b/reproduce/software/config/gnuastro/gnuastro.conf @@ -24,14 +24,20 @@ hdu 1 ignorecase 1 searchin name + stdintimeout 100000 # Tessellation - tilesize 50,50 + tilesize 30,30 numchannels 1,1 remainderfrac 0.1 workoverch 0 + interpmetric radial interpnumngb 9 interponlyblank 0 # Output: - tableformat fits-binary
\ No newline at end of file + tableformat fits-binary + +# Operating mode + quietmmap 0 + minmapsize 2000000000 diff --git a/tex/src/preamble-header.tex b/tex/src/preamble-header.tex index ce9f93e..d1a0147 100644 --- a/tex/src/preamble-header.tex +++ b/tex/src/preamble-header.tex @@ -87,15 +87,3 @@ \renewcommand\Authfont{\small\scshape} \renewcommand\Affilfont{\footnotesize\normalfont} \setlength{\affilsep}{0.2cm} - -\title{\large \uppercase{The paper's title goes here}} - -\author[1]{Your name} -\author[2]{Coauthor one} -\author[1,3]{Coauthor two} - -\affil[1]{The first affiliation in the list.; \url{your@email.address}} -\affil[2]{Another affilation can be put here.} -\affil[3]{And generally as many affiliations as you like. -\par \emph{Received YYYY MM DD; accepted YYYY MM DD; published YYYY MM DD}} -\date{} |