wwa/doc/main.tex

127 lines
6.2 KiB
TeX

\documentclass[a4paper,11pt]{article}
% Pakiety
\usepackage[utf8]{inputenc} % Obsługa znaków UTF-8
\usepackage[T1]{fontenc} % Poprawna obsługa czcionek
\usepackage[english]{babel} % Ustawienia języka
\usepackage{amsmath} % Pakiet matematyczny
\usepackage{graphicx} % Obsługa grafik
\usepackage{hyperref} % Hiperłącza
\usepackage{booktabs} % Estetyczne tabele
\usepackage{geometry} % Marginesy
\geometry{margin=1in} % Ustawienia marginesów
\usepackage[
sortcites,
backend=biber,
hyperref=true,
firstinits=true,
maxbibnames=99,
]{biblatex}
\addbibresource{references.bib}
% Tytuł i autorzy
\title{\textbf{Template for Scientific Paper in LaTeX}}
\author{Author Name$^1$, Co-author Name$^2$ \\
$^1$Affiliation 1, Email: author1@example.com \\
$^2$Affiliation 2, Email: author2@example.com}
\date{\today} % Data automatyczna
% Początek dokumentu
\begin{document}
\maketitle
\begin{abstract}
This is a template for writing scientific papers in LaTeX. The abstract provides a concise summary of the research objectives, methods, results, and conclusions. It should not exceed 250 words.
\end{abstract}
\section{Introduction}
Polycyclic aromatic hydrocarbons (PAHs) are a group of organic compounds consisting of two or more fused aromatic rings. These compounds are primarily formed as byproducts of incomplete combustion processes, including fossil fuel combustion, industrial operations, vehicle emissions, and biomass burning \cite{yang2002sources}. PAHs are persistent in the environment due to their stable chemical structure and hydrophobic nature, making them highly prone to accumulation in atmospheric particulate matter, such as PM10 and PM2.5 \cite{li2006urban}.
The presence of PAHs in the atmosphere is of significant environmental and public health concern. Many PAHs are recognized for their mutagenic, teratogenic, and carcinogenic properties \cite{haritash2009polycyclic}. Benzo[a]pyrene, one of the most well-studied PAHs, has been classified as a Group 1 carcinogen by the International Agency for Research on Cancer (IARC) \cite{iarc2010iarc}. Chronic exposure to airborne PAHs is linked to an increased risk of respiratory diseases, cardiovascular disorders, and cancer, particularly in urban and industrial areas with high levels of particulate pollution \cite{kim2013polycyclic}.
PAHs undergo various atmospheric processes, including photochemical reactions, volatilization, and deposition. Their distribution and fate are influenced by meteorological factors such as temperature, wind patterns, and humidity, as well as by proximity to emission sources \cite{chen2007polycyclic}. Understanding the spatial and temporal variability of PAHs in atmospheric particulate matter is critical for assessing their potential health impacts and for developing effective air quality management strategies.
This study aims to analyze the spatiotemporal distribution of PAHs in suspended particulate matter (PM10 and PM2.5) over a defined region and time frame. By integrating data on atmospheric PAH concentrations with meteorological parameters and source characteristics, the research seeks to provide insights into the dynamics of PAHs in the atmosphere and their implications for environmental health.
\section{Materials and Methods}
Provide a detailed description of the methods and materials used in the study. Include enough information to allow replication of the experiments.
\subsection{Data Collection}
Explain the data sources, sampling methods, and duration of data collection.
\subsection{Data Analysis}
Describe the statistical methods, tools, or software used to analyze the data.
\section{Results}
In this study, we analyzed the spatiotemporal distribution of polycyclic aromatic hydrocarbons (PAHs) in particulate matter. Below, we present the key findings through visual representations.
\subsection{Histogram of Concentrations}
The histograms in Figures~\ref{fig:histogram_pm10} and~\ref{fig:histogram_wwa} show the distribution of concentrations for PM10 and PAHs (WWA), respectively. These plots highlight the variability in pollutant concentrations across different measurements.
\begin{figure}[h]
\centering
\includegraphics[width=0.8\textwidth]{figs/histogram_PM10.png}
\caption{Histogram of PM10 concentrations.}
\label{fig:histogram_pm10}
\end{figure}
\begin{figure}[h]
\centering
\includegraphics[width=0.8\textwidth]{figs/histogram_WWA.png}
\caption{Histogram of PAH (WWA) concentrations.}
\label{fig:histogram_wwa}
\end{figure}
\subsection{Temporal Trends}
Figure~\ref{fig:mean_concentration_over_time} presents the mean concentrations of pollutants over time. This time-series analysis reveals seasonal patterns and potential temporal variability in pollutant levels.
\begin{figure}[h]
\centering
\includegraphics[width=0.8\textwidth]{figs/mean_concentration_over_time.png}
\caption{Mean concentrations of pollutants (PM10 and PAHs) over time.}
\label{fig:mean_concentration_over_time}
\end{figure}
\subsection{Summary}
The visualizations indicate that the concentrations of pollutants exhibit significant variability, influenced by environmental conditions and sources of emissions. PM10 concentrations showed a wider range of distribution compared to PAHs, while temporal trends suggest a potential seasonal effect.
\subsection{Statistical Analysis}
Provide detailed results of the statistical tests conducted.
\section{Discussion}
Discuss the significance of the results in the context of the objectives and previous research. Highlight the implications, limitations, and potential future work.
\section{Conclusion}
Summarize the key findings and their relevance. Provide a concluding statement.
\section*{Acknowledgements}
Acknowledge funding sources, collaborators, and other contributions.
\section*{References}
\bibliographystyle{plain}
\bibliography{references} % Bibliografia powinna być w pliku references.bib
% Przykład wpisu w references.bib:
% @article{example,
% author = {Author Name},
% title = {Title of the Paper},
% journal = {Journal Name},
% year = {2023},
% volume = {10},
% number = {2},
% pages = {123--134},
% doi = {10.1234/example}
% }
\newpage
\printbibliography
\end{document}