LaTeX newcommand by JA1NKU

---関係しそうなパケージリスト---

\usepackage[dvipdfmx,svgnames]{xcolor}
\usepackage[dvipdfmx]{graphicx}
\usepackage[dvipdfmx]{hyperref}
\usepackage{pxjahyper}
\usepackage{amsmath,amssymb}
\usepackage[at]{easylist}% @ list
\usepackage{okumacro}% \ruby
\usepackage{fancyhdr}%ヘッダーとフッターを編集
\usepackage[latin1]{inputenc}%ラテン語表記
\usepackage{tikz}
\usetikzlibrary{intersections,positioning, calc, arrows}
\usepackage[europeanresistors,americaninductors]{circuitikz}
\usepackage{fancybox}

下記のnewcommandをプリアンブルで宣言して使えなかったら、上記パッケージのどれかを追加すると 動くと思います。 なるべくパッケージは少ない方が、シンプルなんだろうけど かなり、がんがん書き込んだスタイルシートを作って使っています。笑 これも、Cloud laTex のおかげです。 Thanks!

段落

\newcommand{\bq}{\begin{quote}}

\newcommand{\eq}{\end{quote}}

パラグラフ

\newcommand{\pg}[1]{\paragraph{#1}}

章立てと引用

\newcommand{\secdoc}[2]{\section{#1} \input{#2}}

%%%--- Easylist 関係 ---------

\newcommand{\bi}{\begin{easylist}[itemize]}
\newcommand{\bc}{\begin{easylist}[checklist]}
\newcommand{\ee}{\end{easylist}}

%
%箇条書きの表現はこのコマンドでは
\bi %箇条書き 
\bc %チェックボックス
@ list 1
@ list 2
@ list 3>
\ee

-- inpfig--- [図形や写真の挿入] -----

\newcommand{\inpfig}[4]{
\begin{figure}[htbp]
\centering
\includegraphics[width=#4cm]{#3}
\caption{#1}\label{#2}
\end{figure}}

\inpfig{タイトル}{fig:label}{figures/000.png}{7}

\inpfig{タイトル}{fig:label}{tikz/000.tkz}{10}

\inpfig{タイトル}{fig:label}{pdf/000.pdf}{10}


%%% --- infigrv ---- angle=90 ---[図形90度反転挿入]-

\newcommand{\inpfigrv}[4]{
\begin{figure}[htbp]
\centering
\includegraphics[width=#4cm, angle=90 ]{#3}
\caption{#1}\label{#2}
\end{figure}}



--------表作成 マクロ

%%-------- inptab ------------------
\newcommand{\inptab}[4]{
\begin{table}[htbp]
\begin{center}
\caption{#1}
\label{#2}
\begin{tabular}{#3}\hline
#4
\end{tabular}
\end{center}
\end{table}}

%% 使い方%

\inptab{タイトル}{table:name}{lll}{
A & B & C \\ \hline
a & b & c \\
1 & 2 6 3 \\
\hline
}

% ---------- 数式入力を簡単にしたい---
\newcommand{\inpeq}[2]{
\begin{equation}
\label{#1}
#2
\end{equation}
}
%%%% 使い方
\inpeq{eq:001}{
x^2=z^2-r^2
}
%%%%%%%%%%%---------------------------- tikz 関係 コマンド -------
\newcommand{\bt}{\begin{tikzpicture}[x=1mm,y=1mm]}
\newcommand{\et}{\end{tikzpicture}}
\newcommand{\rec}[2]{\draw (#1) rectangle (#2);}
\newcommand{\lin}[2]{\draw (#1) -- (#2);}
\newcommand{\cir}[2]{\draw (#1) circle (#2);}
\newcommand{\txt}[2]{\draw (#1) node {#2};}



%%%%>>> スタイルシート用  <<<<<<<<<<< 初期設定 <<<<<<<<<<<
\newcommand{\kenmei}{日々あれこれ}%%%%% 件名やタイトル 
\newcommand{\secretpos}{非公開 個人データ}%%%%% 機密種別<<<<< input<
\setcounter{page}{0}%%%開始ページのカウント 表紙を0ページにする場合





%%%%%%%%%%%%%%%%%%%%%%%%%% page style %%%%%%%%%%%%
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.0pt}
\renewcommand{\footrulewidth}{0.5pt}
\lhead{\kenmei}
\rhead{\fbox{\secretpos}}
%%\lfoot{Printed : \today }
%%\lfoot{Printed : 2022/10/15}
\lfoot{Printed : \today}
\cfoot{\it Desigind by Yoshiyuki,Mogi }
\rfoot{\thepage}




%%%%%%%%%%%%%% [def] %%%%%%%%%%%%%
%\title{{\fbox{\secretpos}}\\ \kenmei}
\author{茂木嘉之}
%\date{2023/12/08}
\date{\today}

%%% mogi30930.sty ver 3.09.30 %%%%%%%%%%%%%%% %
%%%%%%%%%%%% mogi31130.sty ver3.11.30 ---------
\newcommand{\pq}[2]{
\paragraph{#1}
\begin{quote}
{#2}
\end{quote}
}
%%% mogi31203.sty %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%------------------ 単位字体
\newcommand{\rom}[1]{$\,\mathrm{[#1]}$}

%----------------インピーダンス 抵抗の単位
\newcommand{\Omu}{$\,\mathrm{[\Omega]}$}

%----------------回転数
\newcommand{\rpm}{$\,\mathrm{[min^{-1}]}$}

%%% mogi31207.sty %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\newcommand{\ondo}{$\,\mathrm{[{}^\circ C]}$}%%% 温度 ℃
\newcommand{\kakudo}{${}^\circ$}%%% 角度

%%%%% [EOF] %%%%%%%%%%%%%%%%%%%%%


home