diff --git a/.gitignore b/.gitignore
index 6e4ba8c..69a5179 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,6 +23,7 @@
**/*.run.xml
**/tex/main.pdf
**/tex/cv-two-pages.pdf
+**input.pdf
##/png images
-**/output-*.png
\ No newline at end of file
+**/output-*.png
diff --git a/README.md b/README.md
index bb3cc4b..348ceaf 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,14 @@
-# :scroll: My Curriculum Vitae
-## Last update of my CV was 11 February 2024
+# :scroll: My Curriculum Vitae (11 February 2024)
[![GitHub Actions Status](https://github.com/mxochicale/cv/workflows/CICV2P/badge.svg)](https://github.com/mxochicale/cv/actions) [![CV](https://img.shields.io/badge/read_my-CV-blue.svg)](https://github.com/mxochicale/cv/blob/generated-pdfs/cv-two-pages.pdf)
My Curriculum Vitae (CV) is written in LaTeX and it is built locally in Ubuntu 22.04x64 OS with [texlive](https://github.com/mxochicale/latex/tree/master/installation) and remotely with [github action CI](https://github.com/free-cortex/framework/tree/main/workflow).
Refer to [README](tex/README.md) for detailed instructions on local and remote latex built.
+[](https://github.com/mxochicale/cv/blob/generated-pdfs/cv-two-pages.pdf)
+[](https://github.com/mxochicale/cv/blob/generated-pdfs/cv-two-pages.pdf)
+
+
## Clone repository
After generating your SSH keys as suggested [here](https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) or [here](https://github.com/mxochicale/tools/blob/main/github/SSH.md).
You can then clone the repository by typing (or copying) the following line in a terminal at your selected path in your machine:
diff --git a/docs/page-0.png b/docs/page-0.png
new file mode 100644
index 0000000..7804b43
Binary files /dev/null and b/docs/page-0.png differ
diff --git a/docs/page-1.png b/docs/page-1.png
new file mode 100644
index 0000000..9bf467f
Binary files /dev/null and b/docs/page-1.png differ
diff --git a/docs/pdf2png.bash b/docs/pdf2png.bash
index 760805e..78a4ba9 100644
--- a/docs/pdf2png.bash
+++ b/docs/pdf2png.bash
@@ -7,8 +7,12 @@
wget https://github.com/mxochicale/cv/raw/generated-pdfs/cv-two-pages.pdf
+#cp ../tex/cv-two-pages.pdf .
+
mv cv-two-pages.pdf input.pdf
-convert -background white -alpha remove -alpha off -density 500 input.pdf -quality 300 output.png
+DENSITY=100 #500
+QUALITY=500 #300
+convert -background white -alpha remove -alpha off -density ${DENSITY} input.pdf -quality ${QUALITY} page.png
rm *.pdf
#ALTERNATIVES
#convert cv-two-pages.pdf cv-two-pages.png