ユーザ用ツール

サイト用ツール


latex:図表

差分

このページの2つのバージョン間の差分を表示します。

この比較画面にリンクする

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
latex:図表 [2024/12/08 16:38]
kawaue ↷ latex:画像 から latex:図表 へページを名称変更しました。
latex:図表 [2024/12/08 16:46] (現在)
kawaue
行 1: 行 1:
 +=====画像の挿入=====
 +====図の挿入====
 +includegraphicsで画像の挿入。""\label""でラベルを貼り、""\autoref""で参照する。"\autoref"は参照するものを判別して適切な引用(Table, Figure, sectionなど)をつけてくれるすごいやつ。
 +<code>
 +\begin{figure}[tb]
 +  \begin{center}
 +   \includegraphics[width=9.5cm]{picture/corr_full.pdf}
 +   \caption{The correlation matrix of the cross section parameters.}
 +   \label{fig:xsec_corr}
 + \end{center}
 +\end{figure}
 +</code>
 +
 +====複数の図を並べる====
 +<code>
 +\begin{figure}[tb]
 +  \begin{minipage}{0.50\hsize}
 +    \centering
 + \includegraphics[width=8cm]{picture/flux_cov_ND_nu_mu.pdf}
 + %\subcaption{flux cov.}
 + %\label{fig:flux_cov}
 +  \end{minipage}
 +  \begin{minipage}{0.50\hsize}
 +    \centering
 +    \includegraphics[width=8cm]{picture/flux_corr_ND_nu_mu.pdf}
 +    %\subcaption{flux corr.}
 +    %\label{fig:flux_corr}
 +  \end{minipage}
 +  \caption{ND $\nu_\mu$ part of flux covariance matrix and correlation matrix.}\label{fig:flux_cov_corr}
 +\end{figure}
 +</code>
 +
 +/*
 LaTeXで複数の図を1つのfigure環境内にまとめて挿入するには、いくつか方法があるがまず2つの図を並べる場合について紹介する。 図を挿入するfigure環境内にminipage環境を挿入して表示する画像ファイルを選択する。例えば LaTeXで複数の図を1つのfigure環境内にまとめて挿入するには、いくつか方法があるがまず2つの図を並べる場合について紹介する。 図を挿入するfigure環境内にminipage環境を挿入して表示する画像ファイルを選択する。例えば
 <file> <file>
行 39: 行 72:
 </file> </file>
 実行すると図3のキャプション内に(a),(b)というサブキャプションが挿入され、図が並んで表示される。 実行すると図3のキャプション内に(a),(b)というサブキャプションが挿入され、図が並んで表示される。
 +*/
  
 +=====表の挿入===== 
 +セルの結合、中央揃えなど 
 +<code> 
 +\begin{table} 
 +  \begin{center} 
 +    \caption{List of detector systematic parameters.}\label{table:det_param_list} 
 +    \begin{tabular}{c|c|c} \hline 
 +      implementation & uncertainty source & Category  \\ \hline\hline 
 +      \multirow{7}{*}{Variation} & Magnetic Field Distortion & TPC \\ 
 +       & TPC Momentum scale & TPC \\ 
 +       & TPC Momentum resolution & TPC \\ 
 +       & Global Momentum Range resolution & Global \\ 
 +       & FGD Momentum Bias From Vertex Migration & FGD \\ 
 +       & TPC PID & TPC \\ 
 +       & Nu Parent Decay Position & Neutrino beam \\ 
 +      \hline 
 +      \multirow{16}{*}{Weight} & Global Charge ID Efficiency & Global \\ 
 +       & TPC Cluster Efficiency & TPC \\ 
 +       & TPC Track Efficiency & TPC \\ 
 +       & TPC FGD Match Efficiency & Global \\ 
 +       & FGD Hybrid Track Efficiency & FGD \\ 
 +       & Michel Electron tagging Efficiency & FGD \\ 
 +       & Pile Up & external background \\ 
 +       & OOFV & external background \\ 
 +       & FGD ECal Matching Efficiency & Global \\ 
 +       & ECal Track Efficiency & ECal \\ 
 +       & ECal EmHip PID & ECal\\ 
 +       & SI Pion & interaction model \\ 
 +       & SI Proton & interaction model \\ 
 +       & FGD2 Backward Migration & FGD \\ 
 +       & FGD dE/dx PID & FGD \\ 
 +       & FGD dE/dx Momentum Resolution & FGD \\ 
 +      \hline 
 +      Correction & Flux Weight & Neutrino beam \\ 
 +      \hline 
 +    \end{tabular} 
 +  \end{center} 
 +\end{table} 
 +</code>
latex/図表.1733675930.txt.gz · 最終更新: 2024/12/08 16:38 by kawaue