我使用 Python 创建了一个图matplotlib
,并将其保存到 PGF,然后将其嵌入到我的 LaTeX 文档中。我希望它小一点,因为它不会居中,并且会强制向下移动应该位于其上方的部分标题。
这是 pgf 文件的链接 http://www.fast-files.com/getfile.aspx?file=191033
\documentclass[12pt]{article}
\title{COMP 2823: Assignment 1}
\author{Student ID: 480380498}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{fancyhdr}
\usepackage{ulem}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\pagestyle{fancy}
\fancyhf{}
\rhead{SID: 480380498}
\begin{document}
...
\newpage
\section{}
Text \\
\begin{figure}
\begin{center}
\input{graph1.pgf}
\end{center}
\end{figure}
\end{document}
答案1
尝试:
\documentclass[12pt]{article}
\title{COMP 2823: Assignment 1}
\author{Student ID: 480380498}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{fancyhdr}
\usepackage{ulem}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}
\pagestyle{fancy}
\fancyhf{}
\rhead{SID: 480380498}
\begin{document}
...
\newpage% why a newpage?
\section{without title?}
Text % don't use \\, leave a blank line to create a new paragraph
\begin{center}
\resizebox{\linewidth}{!}{\input{graph1.pgf}}
\end{center}
\end{document}
(未测试,因为我没有.pgf 文件)。