-
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.
- Loading branch information
1 parent
5f9d7d5
commit 8aac6ff
Showing
12 changed files
with
669 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,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 |
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,2 @@ | ||
pdflatex main.tex | ||
bibtex main |
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,2 @@ | ||
pdflatex main.tex | ||
pdflatex main.tex |
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 @@ | ||
rm -f *.aux *.blg *.log *.out main.pdf comment.cut *.fdb_latexmk *.fls |
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,5 @@ | ||
#!/bin/bash | ||
|
||
VERSION=$1 | ||
mkdir -p zip-files | ||
zip -r zip-files/arxiv-$VERSION.zip files/ |
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,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. |
Oops, something went wrong.