This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
****************************************************************************** | |
* @file main.c | |
* @author yuqlid | |
* @version V1.0 | |
* @date 15-June-2016 | |
* @brief Default main function. | |
****************************************************************************** | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
****************************************************************************** | |
* @file main.c | |
* @author yuqlid | |
* @version V1.0 | |
* @date 23-Dece-2016 | |
* @brief Default main function. | |
****************************************************************************** | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[b5paper, 9pt, twocolumn, titlepage, uplatex]{jsbook} %メイン構成 | |
\usepackage[dvipdfmx]{graphicx,color,hyperref} %dvi→pdf変換 | |
%追加してるパッケージ | |
\usepackage{url} | |
\usepackage{amssymb} | |
\usepackage{amsmath} | |
\usepackage{multirow} | |
\usepackage{pxjahyper} %pdfのしおりの文字化けを防止する.内部コードを判別して切り替えてくれる | |
\usepackage{comment} | |
\usepackage{listings} %ソースコード載せる時に使う |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "C++ Launch", | |
"type": "cppdbg", | |
"request": "launch", | |
"program": "${workspaceRoot}/BUILD/${workspaceRootFolderName}.elf", | |
"args": [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"type": "shell", | |
"echoCommand": true, | |
"tasks": [ | |
{ | |
"taskName": "build all", | |
"command": "make all -j4", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notifications: | |
email: false | |
sudo: false | |
language: c | |
matrix: | |
fast_finish: true | |
include: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"python.pythonPath": "/Users/yuki/.pyenv/versions/anaconda3-5.1.0", | |
"workbench.iconTheme": "vscode-icons", | |
"latex-workshop.latex.tools": [ | |
{ | |
"command": "latexmk", | |
"args": [ | |
"-e", | |
"$latex=q/uplatex %O -synctex=1 -interaction=nonstopmode -file-line-error %S/", | |
"-e", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# file .latexmkrc | |
# author Ryotaro Onuki, Yuki Kusakabe | |
# created_at 2019.01.25 | |
# modified_at 2019.02.05 | |
# modefied_at 2019.03.13(Yuki) | |
## latex commands | |
$latex = 'uplatex -synctex=1 -halt-on-error'; | |
$latex_silent = 'uplatex -synctex=1 -halt-on-error -interaction=batchmode'; |