diff --git a/main.tex b/main.tex index 65d7168..1983b11 100644 --- a/main.tex +++ b/main.tex @@ -151,7 +151,7 @@ \begin{center} {\Huge \scshape Shambo Chowdhury} \\ \vspace{1pt} - Kharagpur,West Bengal \\ \vspace{1pt} + Burdwan,West Bengal \\ \vspace{1pt} \small \href{tel:#}{ \raisebox{-0.1\height}\faPhone\ \underline{+91-9679033262} ~} \href{mailto:shamboc04@gmail.com}{\raisebox{-0.2\height}\faEnvelope\ \underline{shamboc04@gmail.com}} ~ \href{mailto:shamboc04@kgpian.iitkgp.ac.in}{\raisebox{-0.2\height}\faEnvelope\ \underline{shamboc04@kgpian.iitkgp.ac.in}} ~ @@ -167,7 +167,7 @@ \section{EDUCATION} \resumeSubHeadingListStart \resumeSubheading {Indian Institute of Technology (IIT), Kharagpur}{2023 – 2027} - {B.Tech - Chemical Enggineering}{Kharagpur, West Bengal} + {B.Tech - Chemical Engineering}{Kharagpur, West Bengal} \resumeSubHeadingListEnd @@ -180,7 +180,7 @@ \section{TECHNICAL SKILLS} \hline \textbf{Languages} & Python, C, SQL, Bash, Latex \\ \hline -\textbf{Data Science} & Pandas, NumPy, SciKit-Learn, Matplotlib,Seaborn, Requests, Urllib3, BeautifulSoup4 \\ +\textbf{Data Science} & Pandas, NumPy, SciKit-Learn, Matplotlib, Seaborn, Requests, Urllib3, BeautifulSoup4 \\ \hline \textbf{MLOps} & ZenML, PyArrow, MLflow, Streamlit \\ \hline @@ -275,7 +275,7 @@ \section{ENGAGEMENTS} \resumeProjectHeading {\href{https://go.qwiklabs.com/arcade}{\textbf{\large{\underline{\textbf{Google Cloud Skill Boost Challenge}}}} \href{Link}{\raisebox{-0.1\height}\faExternalLink }}\large{\underline{}}}{2023}\\ \resumeItemListStart - \resumeItem{\normalsize{Participated in The Arcade and successfully completed different challenges based on \textbf{GenAI}, \textbf{open-LLM},\textbf{Pub/Sub} etc}} \\ + \resumeItem{\normalsize{Participated in The Arcade and successfully completed different challenges based on \textbf{GenAI}, \textbf{LLM},\textbf{Pub/Sub} etc}} \\ \resumeItem{\normalsize{Earned \textbf{10 points} in less than month starting from scratch.}} \\ \resumeItemListEnd diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..041f3a1 --- /dev/null +++ b/readme.md @@ -0,0 +1,44 @@ +# LaTeX Resume Builder with Docker + +This project allows me to build my resume in PDF and PNG formats using LaTeX inside a Docker container. This ensures a consistent environment for building my resume, regardless of the host operating system. + +## Prerequisites + +- [Docker](https://www.docker.com/products/docker-desktop) installed on your system. + +## Project Structure + +- `Dockerfile`: Contains the instructions to create the Docker image. +- `resume.tex`: my LaTeX resume source file. + +## Getting Started + +Follow these steps to build and run the Docker image to generate resume. + +### 1. Clone the Repository + +If you haven't already, clone this repository to your local machine: + +```sh +git clone https://github.com/yourusername/latex-resume-docker.git +cd latex-resume-docker +``` + +### 2. Build the Docker Image +Build the Docker image with the following command: +```sh +docker build -t latex-resume . +``` +This process can take some time, especially the first time, as it needs to download and install all the required packages. + +### 3. Compile the LaTeX Document to PDF +Run the following command to compile your `resume.tex` file to a PDF: +```sh +docker run --rm -v $(pwd):/data latex-resume pdflatex resume.tex +``` + +### 4. Convert PDF to PNG +```sh +docker run --rm -v $(pwd):/data latex-resume convert -density 300 resume.pdf -quality 90 resume.png +``` +This command uses ImageMagick's convert tool to generate a high-quality PNG from the PDF. \ No newline at end of file