Melhora
This commit is contained in:
parent
eebe8257aa
commit
75203d0791
7 changed files with 108 additions and 67 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
|
@ -1,6 +1,22 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
*.log
|
*.log
|
||||||
|
*.aux
|
||||||
|
*.pdf
|
||||||
|
*.out
|
||||||
|
*.toc
|
||||||
|
*.synctex.gz
|
||||||
|
*.fls
|
||||||
|
*.fdb_latexmk
|
||||||
|
*.bbl
|
||||||
|
*.blg
|
||||||
|
*.nav
|
||||||
|
*.snm
|
||||||
|
*.vrb
|
||||||
|
*.dvi
|
||||||
|
*.xdv
|
||||||
|
*.lot
|
||||||
|
*.lof
|
||||||
tmp/
|
tmp/
|
||||||
old/
|
old/
|
||||||
.auctex*
|
.auctex*
|
||||||
|
|
|
||||||
25
Alta.tex
25
Alta.tex
|
|
@ -1,25 +0,0 @@
|
||||||
\documentclass[10pt,a4paper]{article}
|
|
||||||
|
|
||||||
\usepackage[margin=1in]{geometry}
|
|
||||||
|
|
||||||
\begin{document}
|
|
||||||
|
|
||||||
\begin{center}
|
|
||||||
{\Huge Lucas Tadeu Marculino} \\
|
|
||||||
Bioprocess Engineer \\
|
|
||||||
\end{center}
|
|
||||||
|
|
||||||
\section*{Profile}
|
|
||||||
Engineer with strong background in biotechnology and programming, focused on applying data-driven solutions in industrial environments.
|
|
||||||
|
|
||||||
\section*{Experience}
|
|
||||||
Quality Control Analyst – Prati-Donaduzzi (2023–Present)
|
|
||||||
|
|
||||||
\section*{Projects}
|
|
||||||
- Fermentation optimization software (TCC)
|
|
||||||
- Biolixiviation modeling research
|
|
||||||
|
|
||||||
\section*{Skills}
|
|
||||||
Python • Data Analysis • HPLC • Linux • Excel
|
|
||||||
|
|
||||||
\end{document}
|
|
||||||
21
Makefile
Normal file
21
Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
TEXS := $(wildcard *.tex)
|
||||||
|
PDFS := $(TEXS:.tex=.pdf)
|
||||||
|
|
||||||
|
LATEX ?= latexmk -pdf -interaction=nonstopmode -halt-on-error
|
||||||
|
OPEN ?= xdg-open
|
||||||
|
|
||||||
|
.PHONY: all build open clean clear
|
||||||
|
|
||||||
|
all: build clean open
|
||||||
|
|
||||||
|
build: $(PDFS)
|
||||||
|
|
||||||
|
%.pdf: %.tex
|
||||||
|
$(LATEX) $<
|
||||||
|
|
||||||
|
open: $(PDFS)
|
||||||
|
@for f in $(PDFS); do $(OPEN) "$$f"; done
|
||||||
|
|
||||||
|
clean clear:
|
||||||
|
@rm -f *.aux *.log *.out *.toc *.synctex.gz *.fls *.fdb_latexmk \
|
||||||
|
*.bbl *.blg *.nav *.snm *.vrb *.dvi *.xdv *.lot *.lof
|
||||||
39
Modern.tex
39
Modern.tex
|
|
@ -1,39 +0,0 @@
|
||||||
\documentclass[11pt,a4paper]{moderncv}
|
|
||||||
|
|
||||||
\moderncvstyle{classic}
|
|
||||||
\moderncvcolor{blue}
|
|
||||||
|
|
||||||
\usepackage[scale=0.85]{geometry}
|
|
||||||
|
|
||||||
\name{Lucas Tadeu}{Marculino}
|
|
||||||
\email{ltadeu6@protonmail.com}
|
|
||||||
\social[linkedin]{ltadeu6}
|
|
||||||
\social[github]{ltadeu6}
|
|
||||||
|
|
||||||
\begin{document}
|
|
||||||
|
|
||||||
\makecvtitle
|
|
||||||
|
|
||||||
\section{Summary}
|
|
||||||
Bioprocess Engineer with experience in pharmaceutical quality control, data analysis, and programming.
|
|
||||||
|
|
||||||
\section{Experience}
|
|
||||||
\cventry{2023--Present}{Quality Control Analyst}{Prati-Donaduzzi}{}{}{
|
|
||||||
\begin{itemize}
|
|
||||||
\item Analytical testing and quality assurance
|
|
||||||
\item HPLC and laboratory techniques
|
|
||||||
\end{itemize}
|
|
||||||
}
|
|
||||||
|
|
||||||
\cventry{2022--2023}{Intern}{Prati-Donaduzzi}{}{}{}
|
|
||||||
|
|
||||||
\section{Education}
|
|
||||||
\cventry{2017--2023}{B.Sc. Bioprocess Engineering}{UTFPR}{}{}{}
|
|
||||||
\cventry{2014--2016}{Technical in Chemistry}{ETEC}{}{}{}
|
|
||||||
|
|
||||||
\section{Skills}
|
|
||||||
\cvitem{Programming}{Python, Data Analysis}
|
|
||||||
\cvitem{Laboratory}{HPLC, Bioreactors}
|
|
||||||
\cvitem{Tools}{Excel, Linux, LaTeX}
|
|
||||||
|
|
||||||
\end{document}
|
|
||||||
|
|
@ -25,7 +25,7 @@ Quality Control Analyst \hfill 2023 -- Present
|
||||||
\item Ensure compliance with regulatory standards
|
\item Ensure compliance with regulatory standards
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
Intern – Quality Control \hfill 2022 -- 2023
|
Intern -- Quality Control \hfill 2022 -- 2023
|
||||||
|
|
||||||
\section*{Education}
|
\section*{Education}
|
||||||
\textbf{B.Sc. in Bioprocess and Biotechnology Engineering} \\
|
\textbf{B.Sc. in Bioprocess and Biotechnology Engineering} \\
|
||||||
|
|
@ -42,8 +42,8 @@ ETEC \hfill 2014 -- 2016
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
|
|
||||||
\section*{Skills}
|
\section*{Skills}
|
||||||
\textbf{Programming:} Python, Data Analysis, Modeling \\
|
\textbf{Data \& Programming:} Python, Data Analysis, Modeling, Regression \\
|
||||||
\textbf{Laboratory:} HPLC, Microscopy, Bioreactors \\
|
\textbf{Laboratory:} Liquid Chromatography (HPLC), Microscopy, Quality Control \\
|
||||||
\textbf{Tools:} Excel, LaTeX, Linux \\
|
\textbf{Tools:} Excel, LaTeX, Linux \\
|
||||||
\textbf{Languages:} English (Full Professional)
|
\textbf{Languages:} English (Full Professional)
|
||||||
|
|
||||||
50
curriculo-ptbr.tex
Normal file
50
curriculo-ptbr.tex
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
\documentclass[11pt]{article}
|
||||||
|
\usepackage[margin=1in]{geometry}
|
||||||
|
\usepackage{titlesec}
|
||||||
|
\usepackage{enumitem}
|
||||||
|
|
||||||
|
\titleformat{\section}{\large\bfseries}{}{0em}{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\begin{center}
|
||||||
|
\textbf{\LARGE Lucas Tadeu Marculino} \\
|
||||||
|
Toledo, PR, Brasil \\
|
||||||
|
ltadeu6@protonmail.com | linkedin.com/in/ltadeu6 | github.com/ltadeu6
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\section*{Resumo}
|
||||||
|
Engenheiro de Bioprocessos e Biotecnologia com experiência em controle de qualidade na indústria farmacêutica. Forte base em análise de dados, programação (Python) e pesquisa científica. Interesse em aplicar ferramentas computacionais a biotecnologia e processos industriais.
|
||||||
|
|
||||||
|
\section*{Experiência}
|
||||||
|
\textbf{Prati-Donaduzzi} \\
|
||||||
|
Analista de Controle de Qualidade \hfill 2023 -- Atual
|
||||||
|
\begin{itemize}[noitemsep]
|
||||||
|
\item Realização de testes analíticos e processos de garantia da qualidade
|
||||||
|
\item Aplicação de técnicas laboratoriais, incluindo cromatografia líquida (HPLC)
|
||||||
|
\item Cumprimento de requisitos e normas regulatórias
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
Estagiário -- Controle de Qualidade \hfill 2022 -- 2023
|
||||||
|
|
||||||
|
\section*{Formação}
|
||||||
|
\textbf{Bacharelado em Engenharia de Bioprocessos e Biotecnologia} \\
|
||||||
|
UTFPR \hfill 2017 -- 2023
|
||||||
|
|
||||||
|
\textbf{Técnico em Química} \\
|
||||||
|
ETEC \hfill 2014 -- 2016
|
||||||
|
|
||||||
|
\section*{Pesquisa \& Projetos}
|
||||||
|
\begin{itemize}
|
||||||
|
\item Desenvolvimento de ferramenta computacional para otimização de parâmetros em processos fermentativos (TCC)
|
||||||
|
\item Pesquisa em otimização de parâmetros de biolixiviação
|
||||||
|
\item Dispositivo quantitativo baseado em sensor eletroquímico
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\section*{Habilidades}
|
||||||
|
\textbf{Dados \& Programação:} Python, Análise de dados, Modelagem, Regressão \\
|
||||||
|
\textbf{Laboratório:} Cromatografia líquida (HPLC), Microscopia, Controle de qualidade \\
|
||||||
|
\textbf{Ferramentas:} Excel, LaTeX, Linux \\
|
||||||
|
\textbf{Idiomas:} Inglês (Profissional)
|
||||||
|
|
||||||
|
\end{document}
|
||||||
18
habilidades.md
Normal file
18
habilidades.md
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Habilidades
|
||||||
|
|
||||||
|
Inglês
|
||||||
|
Python
|
||||||
|
Análise de dados
|
||||||
|
Modelagem matemática
|
||||||
|
Regressão
|
||||||
|
Redes neurais
|
||||||
|
Cromatografia líquida (HPLC)
|
||||||
|
Controle de qualidade
|
||||||
|
Bioquímica
|
||||||
|
Biotecnologia
|
||||||
|
Bioinformática
|
||||||
|
Microscopia
|
||||||
|
Excel
|
||||||
|
LaTeX
|
||||||
|
Linux
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue