#newcommandで定義する
\begin{document}
の前に以下を定義
newcommand.tex
\newcommand\figref[1]{\textbf{図~\ref{fig:#1}}}
\newcommand\tabref[1]{\textbf{表~\ref{tab:#1}}}
- 太字にしたくなかったら
\textbf
を消す
図のラベルは\label{fig:hoge}
,表のラベルは\label{tab:hoge}
のように書いておく
##使い方
sample.tex
\begin{figure}[ht]
\begin{center}
\includegraphics{./images/hoge.eps}
\end{center}
\caption{hoge}
\label{fig:hoge}
\end{figure}
\figref{hoge}に○○を示す.
##出力
%図が入る%
図1に○○を示す.