Skip to content

Commit

Permalink
🎉 submitted to arxiv (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxochicale committed Jun 1, 2022
1 parent 5f9d7d5 commit 8aac6ff
Show file tree
Hide file tree
Showing 12 changed files with 669 additions and 0 deletions.
8 changes: 8 additions & 0 deletions abstract/arxiv/A_copy-tex-figures.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## copy tex file
mkdir -p files
cp ../*tex/main.tex files
## cp image files to arxiv path
cp ../figures/dcgan-based-network/versions/drawing-v01.png files
mv files/drawing-v01.png files/fig01.png
cp ../figures/results/versions/drawing-v02.png files
mv files/drawing-v02.png files/fig02.png
2 changes: 2 additions & 0 deletions abstract/arxiv/B_pdflatex-bibtex.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pdflatex main.tex
bibtex main
2 changes: 2 additions & 0 deletions abstract/arxiv/C_pdflatex-pdflatex.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pdflatex main.tex
pdflatex main.tex
1 change: 1 addition & 0 deletions abstract/arxiv/D_clean-tex-project.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rm -f *.aux *.blg *.log *.out main.pdf comment.cut *.fdb_latexmk *.fls
5 changes: 5 additions & 0 deletions abstract/arxiv/E_zip_files.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

VERSION=$1
mkdir -p zip-files
zip -r zip-files/arxiv-$VERSION.zip files/
76 changes: 76 additions & 0 deletions abstract/arxiv/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# arXiv submission
## Preparation
1. Edit paths in A_copy-tex-figures.bash

2. Run script to copy tex files and images to arxiv/files path
```
bash A_copy-tex-figures.bash
```

3. edit paths for figures in `file\main.tex` as follows
```
%\graphicspath{{../figures}} %goes to path: figures/
\includegraphics[width=\textwidth]{drawing-v01.png}
\includegraphics[width=\linewidth]{drawing-v00.png}
\bibliography{../../references/references}
```

4. compile `main.tex` file
```
cd files/
bash ../B_pdflatex-bibtex.bash
```
Check that reference were appropietely called `evince main.pdf`

4.1 edit reference section as follows
```
%%\bibliography{../references/references}
\input{main.bbl} %% uncomment for arxiv version
```

4.2 compile `main.tex`
```
cd files/
bash ../C_pdflatex-pdflatex.bash
```

4.3 check pdf
```
cd files/
evince main.pdf
```

4.4 clean project
```
cd files/
bash ../D_clean-tex-project.bash
```

5. compress it as zip
```
bash E_zip_files.bash vN??# where N?? is the version number
```

:tada: zip is ready to be submitted in arXiv


## Submission
1. Login to arxiv https://arxiv.org/login
2. Submit the above zip file
3. Add title, author list, and abstract.
```
Empirical Study of Quality Image Assessment for Synthesis of Fetal Head Ultrasound Imaging with DCGANs
Thea Bautista and Jacqueline Matthew and Hamideh Kerdegari and Laura Peralta Pereira and Miguel Xochicale
```
4. Add Categories
```
Categories
Primary: Artificial Intelligence (cs.AI)
Cross lists (optional):
Computer Vision and Pattern Recognition (cs.CV) Remove
Medical Physics (physics.med-ph)
```
5. Submit it


See [Submission Log](SubmissionLog.md) for further deteails.
Loading

0 comments on commit 8aac6ff

Please sign in to comment.