书目样式(类似阿帕网)和目录颜色问题

书目样式(类似阿帕网)和目录颜色问题

我正在使用 Latex 撰写论文,在参考书目和目录中我遇到了许多问题:

1-我正在使用natbib包和apalike样式。我想以以下格式引用参考文献:

例如:文本:为了识别时间断层,Feng 等人(2004)使用了 Lanzante(1996)在气候数据分析中提出的双权重平均值、双权重标准差和 z 分数。双权重估计是一种加权平均值,权重向分布的翼部和尾部减小(Feng 等人,2004),z 分数表示观测值低于或高于双权重平均值的双权重标准差是多少(Sprinthall,2003)。

参考:

DIGGLE, P. 1990. Time series: a biostatistical introduction, Oxford University Press.
EISCHEID, J. K., BRUCE BAKER, C., KARL, T. R. & DIAZ, H. F. 1995. The quality control of long-term climatological data using objective data analysis. Journal of Applied Meteorology, 34, 2787-2795.
EISCHEID, J. K., PASTERIS, P. A., DIAZ, H. F., PLANTICO, M. S. & LOTT, N. J. 2000. Creating a serially complete, national daily time series of temperature and precipitation for the western United States. Journal of Applied Meteorology, 39, 1580-1591.
FENG, S., HU, Q. & QIAN, W. 2004. Quality control of daily meteorological data in China, 1951–2000: A new dataset. International Journal of Climatology, 24, 853-870.

请告诉我哪种风格可以满足我的要求。

2-此外,文中的引用通过超链接连接到参考文献列表。问题是我不想在论文中使用颜色,而这些超链接是蓝色的。我想咨询如何将颜色改为黑色。

3-我在目录方面也遇到了同样的问题,我的意思是所有目录都用蓝色表示,我应该用黑色显示所有文本和数字。请告诉我如何将目录中的文本颜色改为黑色。

Tags:
================================table of content

\pagestyle{fancy} % The page style headers have been "empty" all this time, now use the "fancy" headers as defined before to bring them back

\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents

==================================references

\label{Bibliography}

\lhead{\emph{Bibliography}} % Change the page header to say "Bibliography"

\bibliographystyle{apalike} % Use the "apalike" BibTeX style for formatting the Bibliography

\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"

\end{document}  

答案1

\usepackage[verbose]{placeins}
\usepackage[ngerman]{babel}
\usepackage{blindtext}      
\blindtext \blindtext \blindtext
    \begin{figure}[htbf]
        \centering
            \includegraphics[width=0.9\textwidth]{C:/Thesis/Latex/thesis_1(1)/Figures/studyArea.jpg}
            \rule{35em}{0.3pt}
        \caption{The Grand St. Bernard wireless sensor network deployment (a) the coordinates of nodes according to the Swiss coordinate system (b) the distribution of the nodes in the study site \citep{r33}}
        \label{fig:study area}
    \end{figure}
    \FloatBarrier
    \blindtext

答案2

注意:超链接颜色为蓝色 - 如果讨厌,请更改为黑色

\hypersetup{ 颜色链接, citecolor=黑色, linkcolor=黑色, urlcolor=黑色}

相关内容