comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

el-table で行をクリックして画面遷移をする方法

element-ui の表で、ある行をクリックすると遷移したい場合。 el-table で次のような row をつくる。 ここでdocID は、遷移先のページ IDを表している。 例 <el-t …

no image

tex の equation で式番号を表示しないようにする方法

\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …

no image

C言語で printf の行頭に戻る方法

\r を使うと、行の最初の文字に戻ることができる。 例 #include <stdio.h> int main() { printf(“あいうえお”); printf(“\rかきくけこ\n”); …

no image

tex で行に色をつける方法

xcolor パッケージを使っておく。rowcolor で指定する。 例 \usepackage[table]{xcolor} \begin{document} \begin{table} \begi …

no image

tex で打ち消し線を入力する方法

次のように入力すればよい。打ち消し線は、英語で strikethrough と呼ぶ。 例 \usepackage[normalem]{ulem} \begin{document} Good \sout …