This commit is contained in:
uetchy 2018-08-04 13:19:47 +09:00
parent f17db7862b
commit 0f7a39f9a5
7 changed files with 24 additions and 25 deletions

View File

@ -9,8 +9,7 @@ RUN bundle config --global frozen 1
ENV LANG C.UTF-8 ENV LANG C.UTF-8
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY Gemfile /usr/src/app/ COPY Gemfile Gemfile.lock /usr/src/app/
COPY Gemfile.lock /usr/src/app/
RUN bundle install RUN bundle install
COPY . /usr/src/app COPY . /usr/src/app

View File

@ -1,4 +1,3 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins # workaround https://github.com/github/pages-gem#usage gem 'github-pages', group: :jekyll_plugins # workaround https://github.com/github/pages-gem#usage
gem 'jekyll-redirect-from'

View File

@ -81,7 +81,7 @@ GEM
octokit (~> 4.0) octokit (~> 4.0)
public_suffix (~> 2.0) public_suffix (~> 2.0)
typhoeus (~> 1.3) typhoeus (~> 1.3)
html-pipeline (2.8.3) html-pipeline (2.8.4)
activesupport (>= 2) activesupport (>= 2)
nokogiri (>= 1.4) nokogiri (>= 1.4)
http_parser.rb (0.6.0) http_parser.rb (0.6.0)

View File

@ -23,7 +23,11 @@ twitter:
github: github:
username: uetchy username: uetchy
logo: "/images/icon.png" logo: "/images/icon.png"
highlighter: highlighter: none
markdown: kramdown
kramdown:
syntax_highlighter_opts:
disable : true
excerpt_separator: "#" excerpt_separator: "#"
google_analytics: UA-28919359-12 google_analytics: UA-28919359-12
plugins: plugins:
@ -32,7 +36,6 @@ plugins:
- jekyll-seo-tag - jekyll-seo-tag
- jekyll-feed - jekyll-feed
- jemoji - jemoji
- jekyll-redirect-from
include: include:
- _pages - _pages
exclude: exclude:

View File

@ -30,4 +30,17 @@
<!-- Styles --> <!-- Styles -->
<link rel="stylesheet" href="{{ site.baseurl }}/css/index.css"> <link rel="stylesheet" href="{{ site.baseurl }}/css/index.css">
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async></script>
</script>
</head> </head>

View File

@ -22,18 +22,3 @@ layout: default
</div> </div>
</article> </article>
</section> </section>
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
displayMath: [['$$','$$'], ['\[','\]']],
processEscapes: false,
processEnvironments: false,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'a']
}
});
</script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS_SVG">
</script>

View File

@ -8,8 +8,8 @@ $m\times n$の複素行列の転置を取り、複素共軛をとった$n\times
$$ $$
\begin{align} \begin{align}
A &=\begin{pmatrix} 1 & -1-i \\ 1+i & i \end{pmatrix} \\ A &=\begin{pmatrix} 1 & -1-i \\ 1+i & i \end{pmatrix} \\
A^_ &=\begin{pmatrix} 1 & 1-i \\ -1+i & -i \end{pmatrix} \\ A^{\_} &=\begin{pmatrix} 1 & 1-i \\ -1+i & -i \end{pmatrix} \\
A^_ &= \bar{A}^T A^{\_} &= \bar{A}^T
\end{align} \end{align}
$$ $$