Beamer 템플릿
XeLaTeX를 사용하기 때문에 글꼴로 마치지도 모릅니다.
그렇다면 글꼴을 환경에 존재하는 글꼴로 설정해보십시오.
tikz는 사용할 때만.
애니메이션 같은 것도 사용할 수 있지만, 파와포만큼 빛나지 않기 때문에 나는 사용하지 않습니다.
sample.tex
%Beamerテンプレート
\documentclass[9pt, xelatex]{beamer}
%全体設定
\AtBeginDvi{\special{pdf:tounicode 90ms-RKSJ-UCS2}}
\usetheme{Dresden}
\usecolortheme[RGB={32, 32, 96}]{structure} %カラーテーマ
\usefonttheme{professionalfonts} %フォントテーマ
%色用パッケージ
\usepackage{color}
\usepackage{colortbl}
%数式用パッケージ
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{ascmac}
\usepackage{braket}
\usepackage{cancel}
%その他パッケージ
\usepackage{graphicx}
\usepackage{url}
\usepackage{caption}
\captionsetup[figure]{format=plain,labelformat=simple,labelsep=period,font=scriptsize} %captopn
\usepackage{setspace}
\setstretch{1.2} %行間
\usepackage{multicol} %段組設定
\usepackage{framed}
%フォント基本設定
\usepackage{xltxtra}
\setmainfont{Noto Sans CJK JP}
\setsansfont{Noto Sans CJK JP}
\setmonofont{Noto Sans CJK JP}
\XeTeXlinebreaklocale ``ja''
\usepackage[utf8]{inputenc}%文字コードをUTF-8
\usepackage{bm}%数式太字
\usefonttheme{structurebold} % タイトル部を太字
\setbeamerfont{alerted text}{series=\bfseries} % Alertを太字
\setbeamerfont{frametitle}{size=\Large} % フレームタイトル文字サイズ
\setbeamerfont{title}{size=\Large} % タイトル文字サイズ
\setbeamerfont{date}{size=\small} % 日付文字サイズ
%色の定義
\definecolor{yellow}{RGB}{247, 242, 185}
\definecolor{red}{RGB}{153, 20, 48}
\definecolor{blue}{RGB}{34, 56, 119}
\definecolor{hc}{RGB}{247, 242, 185} %highlight color
\definecolor{shade}{RGB}{230, 230, 230}
\setbeamercolor{normal text}{fg=gray!40!black}
\setbeamercolor{alerted text}{fg=red}
%%tikz
\usepackage{tikz}
\usetikzlibrary{positioning, shapes.callouts}
\usepackage{pxpgfmark} %ノードの名前を共有
\newcommand{\highlight}[2][hc]{\tikz[baseline=(x.base)]{\node[rectangle,rounded corners,fill=#1](x){#2};}}
\newcommand{\highlightcap}[3][red]{\tikz[baseline=(x.base)]{\node[rectangle,rounded corners,fill=#1!10](x){#2} node[below of=x, color=#1]{#3};}}
\setbeamertemplate{footline}[frame number]
\setbeamertemplate{navigation symbols}{}
\title{}
\author{}
\date{}
\institute{} %所属
\begin{document}
%タイトル
\frame{\titlepage}
%目次
\begin{frame}{}
\large
\tableofcontents
\normalsize
\end{frame}
\section{}
%スライド基本
\begin{frame}{スライドタイトル}
中身に文や図表をおく
\end{frame}
\begin{frame}{}
%スライドを左右分割
\begin{columns}
\begin{column}{0.45\textwidth}
左側
\end{column}
\begin{column}{0.45\textwidth}
右側
\end{column}
\end{columns}
\end{frame}
\begin{frame}{}
\alert{色付き文字1}
\structure{色付き文字2}
\end{frame}
\begin{frame}{}
枠囲いというか段落?
\begin{block}{block}
枠囲い1
\end{block}
\begin{alertblock}{alertblock}
枠囲い2
\end{alertblock}
\begin{exampleblock}{exampleblock}
枠囲い3
\end{exampleblock}
\end{frame}
\section{参考文献}
\begin{frame}{参考文献}
%参考文献
\begin{thebibliography}{9}
\footnotesize
\beamertemplatetextbibitems
\bibitem{}
\normalsize
\end{thebibliography}
\end{frame}
\end{document}
XeLaTeX로 컴파일하면 이런 식으로 할 수 있습니다.
참고문헌
Beamer 슬라이드 사용자 정의 - - pLaTeX + dvips -
LaTeX + Beamer로 슬라이드 만들기 - 무언가를 적어 두는 것
비우 r — 작업 소마’s 웨브파게
Reference
이 문제에 관하여(Beamer 템플릿), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/tommy-hayashida/items/1d81fc9d62409a153510
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Beamer 템플릿), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tommy-hayashida/items/1d81fc9d62409a153510텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)