使用Matplotlib和LaTeX将轴的标题缩放到文本的其余部分

时间:2019-12-04 18:36:57

标签: python matplotlib latex

我正在尝试在LaTeX文档中插入图形,但是每个轴上的标题都太小了。对于我要插入的内容,标签也很小。

我正在通过python生成此图,并将其另存为.eps文件。我遵循的最低LaTeX代码如下:

\documentclass[11pt, english,two column]{journal}
\usepackage{graphicx}
\usepackage[colorlinks=true, linkcolor=gray]{hyperref}
\usepackage[english]{babel}
\selectlanguage{english}
\usepackage[utf8]{inputenc}
\usepackage[svgnames]{xcolor}
\usepackage{psfrag}
\usepackage{pgfgantt}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{authblk}
\usepackage{psfrag}
\usepackage{graphicx}
\usepackage{indentfirst}
\bibliographystyle{ieeetr}
\numberwithin{equation}{section}
\hypersetup{
 colorlinks=false,
 citecolor=Violet,
 linkcolor=Red,
 urlcolor=Blue}

\usepackage{listings}
\usepackage{afterpage}
\pagestyle{plain}

\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}



\lstset{frame=tb,
language=R,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
numbers=none,
keywordstyle=\color{black},
numberstyle=\tiny\color{gray},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}

\usepackage{here}

\topmargin = -1cm
\textheight=22cm
\textwidth=17cm
\oddsidemargin=0cm
\parindent=0mm
\pagestyle{plain}

\usepackage{color}
\usepackage{ragged2e}
\parindent = 5mm
\begin{document}

\begin{figure}
    \centering
    \includegraphics[width = 0.5\textwidth]{least_squares_graph_bp}
    \caption{Caption}
    \label{fig:my_label}
\end{figure}
talk about 
\bibliography{ref.bib}
\end{document}

是否可以更改这些轴的字体大小以匹配文本并使图形更易读?我尝试使用\psfrag

0 个答案:

没有答案