> ## 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 형식으로 내보내세요. 리포트에서 드롭다운 메뉴를 열려면 **액션 (<Icon icon="ellipsis-vertical" iconType="solid" />)** 메뉴를 선택합니다. **Download and**를 선택한 다음, 출력 형식으로 PDF 또는 LaTeX를 선택하세요.

<div id="cloning-reports">
  ## Reports 복제
</div>

<Tabs>
  <Tab title="W&B App">
    리포트에서 **액션 (<Icon icon="ellipsis-vertical" iconType="solid" />)** 메뉴를 선택해 드롭다운 메뉴를 엽니다. **이 리포트 복제** 버튼을 선택합니다. 모달에서 복제한 리포트의 대상을 선택합니다. **리포트 복제**를 선택합니다.

    <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>
