PDFにはすべてのコードが表示されているわけではありません

PDFにはすべてのコードが表示されているわけではありません

そこで、特定の図 (tikzpicture) を作成する方法の例をオンラインで見つけました。LaTeX で図を作成しましたが、なぜかタイトルとセクションのテキストが表示されません。これは、ドキュメント クラスが article ではないためだと思います。ただし、ドキュメント クラスが article の場合、図は表示されません。どうすれば解決できますか? 以下は私のコードです。

\documentclass[tikz,border=10pt]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{verbatim}


\usetikzlibrary{calc}
\title{Matematisk modellering}
\author{olba_ }
\date{February 2016}

\begin{document}

\maketitle

\section{Introduction}

\section{Problem 1}

Givet avståndet $d$ från högtalare och ljudkälla, samt givet högtalarnas positioner, beräkna läget för ljudkällan.

\begin{tikzpicture}
  [
    scale=3,
    >=stealth,
    point/.style = {draw, circle,  fill = black, inner sep = 1pt},
    dot/.style   = {draw, circle,  fill = black, inner sep = .2pt},
  ]

  % the circle
  \def\rad{1}
  \node (origin) at (0,0) {};


  % triangle nodes: just points on the circle
  \node (n0) at +(60:\rad) [point, label = above:$s$] {};
  \node (n1) at +(-145:\rad) [point, label = below:$r_{1}$] {};
  \node (n2) at +(-45:\rad) [point, label = {below right:$r_{2}$}] {};
  \node (n3) at +(10:\rad) [point, label = {below left:$r_{3}$}] {};

  % triangle edges: connect the vertices, and leave a node at the midpoint
  \draw[->] (n2) -- node (a) [label = {above left:$d_{2}$}] {} (n0);
  \draw[->] (n1) -- node (b) [label = {below right:$d_{1}$}] {} (n0);
  \draw[->] (n3) -- node (c) [label = {above right:$d_{3}$}] {} (n0);


\end{tikzpicture}

\end{document}

答え1

タイトルなどを含む実際の記事を作成したいのだと思います。そのため、articleクラスを使用して後で読み込みますtikz

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{verbatim}
\usepackage{tikz}
\usetikzlibrary{calc}

\title{Matematisk modellering}
\author{name here}
\date{February 2016}

\begin{document}

\maketitle

\section{Introduction}

\section{Problem 1}

Givet avståndet $d$ från högtalare och ljudkälla, samt givet högtalarnas positioner, beräkna läget för ljudkällan.
\begin{figure*}[h]\centering
\begin{tikzpicture}
  [
    scale=3,
    >=stealth,
    point/.style = {draw, circle,  fill = black, inner sep = 1pt},
    dot/.style   = {draw, circle,  fill = black, inner sep = .2pt},
  ]

  % the circle
  \def\rad{1}
  \node (origin) at (0,0) {};


  % triangle nodes: just points on the circle
  \node (n0) at +(60:\rad) [point, label = above:$s$] {};
  \node (n1) at +(-145:\rad) [point, label = below:$r_{1}$] {};
  \node (n2) at +(-45:\rad) [point, label = {below right:$r_{2}$}] {};
  \node (n3) at +(10:\rad) [point, label = {below left:$r_{3}$}] {};

  % triangle edges: connect the vertices, and leave a node at the midpoint
  \draw[->] (n2) -- node (a) [label = {above left:$d_{2}$}] {} (n0);
  \draw[->] (n1) -- node (b) [label = {below right:$d_{1}$}] {} (n0);
  \draw[->] (n3) -- node (c) [label = {above right:$d_{3}$}] {} (n0);


\end{tikzpicture}
\end{figure*}

\end{document}

ここに画像の説明を入力してください

関連情報