两个小页面之间的距离和字体大小

两个小页面之间的距离和字体大小

问题1:如何增加迷你页面两部分之间的距离?

问题2:我发现迷你页面的第二部分字体比第一部分小,这是什么问题?

梅威瑟:

\documentclass[12pt]{article}
\usepackage{pgf,tikz,pgfplots}
\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{amsfonts}
\usepackage{amssymb}
\pgfplotsset{compat=1.5}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
\pagestyle{empty}
\begin{document}
\begin{minipage}{.5\textwidth}
\begin{flalign*}
f(x_1)&=f(2.5)&\\[6pt]
&=(2.5)^3-4(2.5)-9&\\[6pt]
&=15.625-10-9&\\[6pt]
&=-3.375\;\;(-ve)&
\end{flalign*}      
\end{minipage}%
\begin{minipage}{0.5\textwidth}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1cm,y=1cm]
\draw [line width=1pt] (-3,-1)-- (3,-1);
\begin{scriptsize}
\draw [fill=black] (-3,-1) circle (2.5pt);
\draw[color=black] (-3.00,-0.5) node {$a=2$};
\draw[color=black] (-3.00,-1.5) node {$(-)$};
\draw [fill=black] (3,-1) circle (2.5pt);
\draw[color=black] (3,-0.50) node {$b=3$};
\draw[color=black] (3,-1.50) node {$(+)$};
\draw [fill=black] (0,-1) circle (2.5pt);
\draw[color=black] (-0.00,-0.5) node {$x_1=2.5$};
\draw[color=black] (-0.00,-1.5) node {$(-)$};
\end{scriptsize}
\end{tikzpicture}   
\end{minipage}
\end{document}

答案1

要在两个小页面之间添加一些水平空间,您可以使用\hfill来完全填充空间或\hspace{<length>}在它们之间添加。确保那里没有空行,以避免段落中断。

如果想要相同的字体大小,请删除scriptsize环境。无论如何,这都是错误的,因为它\scriptsize是宏,而不是环境(但不幸的是,宏名称可以用作 LaTeX 的环境而不会导致错误)。对于 TikZ,还有一个font=<code>应该使用的选项键。

这是我的建议:

\documentclass[12pt]{article}
\usepackage{pgf,tikz,pgfplots}
\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{amsfonts}
\usepackage{amssymb}
\pgfplotsset{compat=1.5}
\usepackage{mathrsfs}
\usetikzlibrary{arrows}
\pagestyle{empty}
\usepackage{lipsum}% for example fill text
\begin{document}
\lipsum[1]
\par\noindent% to avoid the paragaph indent
\begin{minipage}{.5\textwidth}
\begin{flalign*}
f(x_1)&=f(2.5)&\\[6pt]
&=(2.5)^3-4(2.5)-9&\\[6pt]
&=15.625-10-9&\\[6pt]
&=-3.375\;\;(-ve)&
\end{flalign*}      
\end{minipage}%
\hfill% to fill in the maximum amount of space or \hspace{<value>}
\begin{minipage}{0.5\textwidth}
\begin{tikzpicture}[line cap=round,line join=round,>=triangle 45,x=1cm,y=1cm%,font=\scriptsize
]
\draw [line width=1pt] (-3,-1)-- (3,-1);
\draw [fill=black] (-3,-1) circle (2.5pt);
\draw[color=black] (-3.00,-0.5) node {$a=2$};
\draw[color=black] (-3.00,-1.5) node {$(-)$};
\draw [fill=black] (3,-1) circle (2.5pt);
\draw[color=black] (3,-0.50) node {$b=3$};
\draw[color=black] (3,-1.50) node {$(+)$};
\draw [fill=black] (0,-1) circle (2.5pt);
\draw[color=black] (-0.00,-0.5) node {$x_1=2.5$};
\draw[color=black] (-0.00,-1.5) node {$(-)$};
\end{tikzpicture}   
\end{minipage}
\par\bigskip\par
\lipsum[2]
\end{document}

MWE 结果

相关内容