> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-update-reference-docs-40.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> W&B Reports を PDF または LaTeX ファイルにエクスポートし、App UI または Report and Workspace API を使用して複製します。

# Reports の複製とエクスポート

<Note>
  W\&B Report and Workspace API はパブリックプレビューです。
</Note>

<div id="export-reports">
  ## Reports をエクスポート
</div>

レポートを PDF または LaTeX としてエクスポートできます。レポート内で **action (<Icon icon="ellipsis-vertical" iconType="solid" />)** メニューを選択して、ドロップダウンメニューを開きます。**Download and** を選択し、出力形式として PDF または LaTeX を選びます。

<div id="cloning-reports">
  ## Reports の複製
</div>

<Tabs>
  <Tab title="W&B App">
    レポート内で **action (<Icon icon="ellipsis-vertical" iconType="solid" />)** メニューを選択して、ドロップダウンメニューを開きます。**Clone this report** ボタンを選択します。モーダルで、複製したレポートの保存先を選びます。次に **Clone report** を選択します。

    <Frame>
      <img src="https://mintcdn.com/wb-21fd5541-update-reference-docs-40/ZXlHoV84idQQfL7x/images/reports/clone_reports.gif?s=dc69870d3b295d36130f93abc19580cb" alt="Reports の複製" width="2672" height="1168" data-path="images/reports/clone_reports.gif" />
    </Frame>

    レポートを複製すると、プロジェクトのテンプレートや形式を再利用できます。チームのアカウント内でレポートを複製した場合、その複製したレポートはチームに表示されます。個人のアカウント内で複製したレポートは、そのユーザーにのみ表示されます。
  </Tab>

  <Tab title="Report and Workspace API">
    URL から Report を読み込み、テンプレートとして使用します。

    ```python theme={null}
    report = wr.Report(
        project=PROJECT, title="Quickstart Report", description="That was easy!"
    )  # 作成
    report.save()  # 保存
    new_report = wr.Report.from_url(report.url)  # 読み込み
    ```

    `new_report.blocks` 内の内容を編集します。

    ```python theme={null}
    pg = wr.PanelGrid(
        runsets=[
            wr.Runset(ENTITY, PROJECT, "First Run Set"),
            wr.Runset(ENTITY, PROJECT, "Elephants Only!", query="elephant"),
        ],
        panels=[
            wr.LinePlot(x="Step", y=["val_acc"], smoothing_factor=0.8),
            wr.BarPlot(metrics=["acc"]),
            wr.MediaBrowser(media_keys="img", num_columns=1),
            wr.RunComparer(diff_only="split", layout={"w": 24, "h": 9}),
        ],
    )
    new_report.blocks = (
        report.blocks[:1] + [wr.H1("Panel Grid Example"), pg] + report.blocks[1:]
    )
    new_report.save()
    ```
  </Tab>
</Tabs>
