Zhonghua Zheng (zhonghua.zheng@outlook.com)
[Click to expand]
-
create and name the private repo
paper_xxx_journal
(e.g.paper_UHWs_acp
) in the MEDAL organization -
select
Add .gitignore:TeX
-
add
*.DS_Store
andpaper_xxx_journal.pdf
(paper_UHWs_acp.pdf
) to the.gitignore
file via webpage -
import the repo to Overleaf (Menu -> Sync -> GitHub) and create the following folders for different paper versions
- 0_template (this will help you compare different template versions)
- 1_draft
- 2_preprint
- 2_manuscript
- 3_reviews_1
- decision letter (file(s))
- 3_revised_paper_1
- response_to_reviews (folder)
- manuscript (folder)
- submission_suammry (folder or file)
- 4_reviews_2
- decision letter (file(s))
- 4_revised_paper_2
- response_to_reviews (folder)
- manuscript (folder)
- submission_summary (folder or file)
- ...
- final_proofs
-
within each
manuscript
folder (and the1_draft
and2_preprint
folders)- name the latex file the same:
paper_xxx_journal.tex
(e.g.paper_UHWs_acp.tex
) - name the bibtex file
refs_xxx_journal.bib
(e.g.paper_UHWs_acp.bib
) - make a subdir for graphics called
graphics
, which includes all figures (we can reuse the the figures in other folders)
- name the latex file the same:
-
Share your Overleaf project with your collaborators.
-
Always sync your Overleaf project (Menu -> Sync -> GitHub) whenever you make significant changes (e.g. each time prior to beginning and following completion).
[Click to expand]
-
name the repo
code_xxx_journal_private
, e.g.code_UHWs_acp_private
-
select
Add .gitignore:Python
(or others) -
add
*.DS_Store
to the.gitignore
via webpage -
create the following folders for different paper versions
- misc
- model (optional)
- data (optional, we must deposit data in a FAIR aligned repository)
- 0_scratch
- 1_draft
- 2_submitted (you will copy all the code here to the group repository
code_xxx
, e.g.code_UHWs
) - 3_revised_paper_1
- 4_revised_paper_2
- ...
- final_proof
-
create symbolic link
ln -s ./data ./0_scratch/data ln -s ./data ./1_draft/data ln -s ./data ./2_submitted/data ... # to remove the link # rm -rf ./0_scratch/data # rm -rf ./1_draft/data # rm -rf ./2_submitted/data ...
-
Before submitting the preprint and manuscript for the first time, using
2_submitted
to check the code
[Click to expand]
-
PowerPoint templates: (link)
-
Beamer: overleaf themes or Mark Kambites’ Beamer theme
-
To make the purple background and white text for Alex's theme (from overleaf) based on the blog:
\documentclass[11pt,aspectratio=169,ignorenonframetext,t]{beamer} AND \usetheme[darktitle,dark,framenumber,titleframestart=1]{UoM_alex}
-